Server IP : 104.21.16.1 / Your IP : 216.73.216.90 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/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>