Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/duplicator/template/admin_pages/settings/general/ |
Upload File : |
<?php /** * Admin Notifications content. * * Variables * * @var \Duplicator\Core\Views\TplMng $tplMng * @var array<string, mixed> $tplData */ use Duplicator\Utils\Email\EmailSummary; defined('ABSPATH') || exit; $frequency = DUP_Settings::Get('email_summary_frequency'); ?> <h3 class="title"><?php _e('Email Summary', 'duplicator') ?></h3> <hr size="1" /> <table class="dup-capabilities-selector-wrapper form-table"> <tr valign="top"> <th scope="row"><label><?php _e('Frequency', 'duplicator'); ?></label></th> <td> <select id="email-summary-frequency" name="email_summary_frequency"> <?php foreach (EmailSummary::getAllFrequencyOptions() as $key => $label) : ?> <option value="<?php echo esc_attr((string) $key); ?>" <?php selected($frequency, $key); ?>> <?php echo esc_html($label); ?> </option> <?php endforeach; ?> </select> <p class="description"> <?php printf( _x( 'You can view the email summary example %1shere%2s.', '%1s and %2s are the opening and close <a> tags to the summary preview link', 'duplicator' ), '<a href="' . EmailSummary::getPreviewLink() . '" target="_blank">', '</a>' ); ?> </p> </td> </tr> </table>