Server IP : 15.235.198.142 / Your IP : 216.73.216.208 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/yme/wp-content/plugins/duplicator/template/parts/DashboardWidget/ |
Upload File : |
<?php /** * Duplicator package row in table packages list * * @package Duplicator * @copyright (c) 2022, Snap Creek LLC */ defined("ABSPATH") or die(""); /** * Variables * * @var \Duplicator\Core\Controllers\ControllersManager $ctrlMng * @var \Duplicator\Core\Views\TplMng $tplMng * @var array<string, mixed> $tplData * @var array{name: string,slug: string,more: string,pro: array{file: string}} $plugin */ $plugin = $tplData['plugin']; /** @var string */ $installUrl = $tplData['installUrl']; $moreUrl = $plugin['more'] . '?' . http_build_query(array( 'utm_medium' => 'link', 'utm_source' => 'duplicatorplugin', 'utm_campaign' => 'duplicatordashboardwidget' )); ?> <div class="dup-section-recommended"> <hr> <div class="dup-flex-content" > <div> <span class="dup-recommended-label"> <?php esc_html_e('Recommended Plugin:', 'duplicator'); ?> </span> <b><?php echo esc_html($plugin['name']); ?></b> - <span class="action-links"> <?php if (current_user_can('install_plugins') && current_user_can('activate_plugins')) { ?> <a href="<?php echo esc_url($installUrl); ?>"><?php esc_html_e('Install', 'duplicator'); ?></a> <?php } ?> <a href="<?php echo esc_url($moreUrl); ?>" target="_blank" ><?php esc_html_e('Learn More', 'duplicator'); ?></a> </span> </div> <div> <button type="button" id="dup-dash-widget-section-recommended" title="<?php esc_html_e('Dismiss recommended plugin', 'duplicator'); ?>"> <span class="dashicons dashicons-no-alt"></span> </button> </div> </div> </div>