| Server IP : 104.21.28.229 / Your IP : 216.73.216.142 Web Server : Apache/2 System : Linux hosting8537.lvs 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : mienphi ( 1014) PHP Version : 8.2.14 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/mienphi/public_html/wp-content/plugins/learnpress/inc/admin/meta-box/fields/ |
Upload File : |
<?php $emails = LP_Emails::instance()->emails; ?>
<table class="learn-press-emails">
<thead>
<tr>
<th></th>
<th><?php esc_html_e( 'Email', 'learnpress' ); ?></th>
<th><?php esc_html_e( 'Description', 'learnpress' ); ?></th>
<th></th>
</tr>
</thead>
<tbody>
<?php
foreach ( $emails as $email ) {
$group = '';
if ( $email->group ) {
$url = esc_url_raw(
add_query_arg(
array(
'section' => $email->group->group_id,
'sub-section' => $email->id,
),
admin_url( 'admin.php?page=learn-press-settings&tab=emails' )
)
);
$group = $email->group;
} else {
$url = esc_url_raw( add_query_arg( array( 'section' => $email->id ), admin_url( 'admin.php?page=learn-press-settings&tab=emails' ) ) );
}
?>
<tr id="email-<?php echo esc_attr( $email->id ); ?>">
<td class="status <?php echo esc_attr( $email->enable ? 'enabled' : '' ); ?>">
<span class="change-email-status dashicons dashicons-yes" data-status="<?php echo esc_attr( $email->enable ? 'on' : 'off' ); ?>" data-id="<?php echo esc_attr( $email->id ); ?>"></span>
</td>
<td class="name">
<a href="<?php echo esc_url_raw( $url ); ?>">
<?php
if ( $group ) {
echo join( ' → ', array( $group, $email->title ) );
} else {
echo wp_kses_post( $email->title );
}
?>
</a>
</td>
<td class="description"><?php echo wp_kses_post( $email->description ); ?></td>
<td class="manage"><a class="button" href="<?php echo esc_url_raw( $url ); ?>"><?php esc_html_e( 'Manage', 'learnpress' ); ?></a></td>
</tr>
<?php } ?>
</tbody>
</table>
<p class="email-actions">
<button class="button" id="learn-press-enable-emails" data-status="yes"><?php esc_html_e( 'Enable all', 'learnpress' ); ?></button>
<button class="button" id="learn-press-disable-emails" data-status="no"><?php esc_html_e( 'Disable all', 'learnpress' ); ?></button>
</p>