File: /home/pelakir/public_html/wp-content/plugins/digits/digit.php
<?php
/*
* Plugin Name: افزونه دیجیتس پلاس راستچین: ورود و عضویت با کدتایید پیامکی
* Description: برای استفاده کامل و بدون مشکل از افزونه دیجیتس، نیاز است که نسخه PHP سایت، بر روی 7.4، 8.1 یا 8.2 قرار گرفته باشد.
* Version: 9.1.0.5
* Plugin URI: https://www.rtl-theme.com/digits-wordpress-plugin/
* Author URI: https://www.rtl-theme.com/digits-wordpress-plugin/
* Author: گروه اتوماتیک سایت راستچین
* Text Domain: digits
* Requires PHP: 7.4
* Domain Path: /languages
*/
defined('ABSPATH') || exit;
/**
* Add a settings to plugin_action_links
*/
function dig_add_plugin_action_links($links, $file)
{
static $this_plugin;
if (!$this_plugin) {
$this_plugin = plugin_basename(__FILE__);
}
if ($file == $this_plugin) {
$uri = admin_url("admin.php?page=digits_settings");
$wsl_links = '<a href="admin.php?page=digits_settings" target="blank" style="margin: 3px;background: #763ec2;color: white;padding: 5px 7px;border-radius: 4px;">تنظیمات دیجیتس</a>';
array_unshift($links, $wsl_links);
}
if ($file == $this_plugin) {
$uri = ("https://www.rtl-theme.com/author/automatic/products/");
$wsl_links = '<a href="https://www.rtl-theme.com/author/automatic/products/" target="blank" style="margin: 3px;background: #8ed556;color: white;padding: 5px 7px;border-radius: 4px;">سایرمحصولات گروه اتوماتیک</a>';
array_unshift($links, $wsl_links);
}
if ($file == $this_plugin) {
$uri = ("https://www.rtl-theme.com/digits-mobile-number-signup/manuals/");
$wsl_links = '<a href="https://www.rtl-theme.com/digits-mobile-number-signup/manuals/" target="blank" style="margin: 3px;background: #3ec2a9;color: white;padding: 5px 7px;border-radius: 4px;">راهنمای فارسی کار با دیجیتس</a>';
array_unshift($links, $wsl_links);
}
if ($file == $this_plugin) {
$uri = ("https://www.rtl-theme.com/bundle/digits-addons-package/");
$wsl_links = '<a href="https://www.rtl-theme.com/bundle/digits-addons-package/" target="blank" style="margin: 3px;background: #c23e3e;color: white;padding: 5px 7px;border-radius: 4px;">پکافزودنیهای دیجیتس با تخفیف ویژه</a>';
array_unshift($links, $wsl_links);
}
return $links;
}
require_once plugin_dir_path(__FILE__) . 'digit-core.php';