Sindbad~EG File Manager
<?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 = 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 = add_query_arg( array( 'section' => $email->id ), admin_url( 'admin.php?page=learn-press-settings&tab=emails' ) );
}
?>
<tr id="email-<?php echo $email->id; ?>">
<td class="status <?php echo $email->enable ? 'enabled' : ''; ?>">
<span class="change-email-status dashicons dashicons-yes" data-status="<?php echo $email->enable ? 'on' : 'off'; ?>" data-id="<?php echo $email->id; ?>"></span>
</td>
<td class="name">
<a href="<?php echo esc_url( $url ); ?>">
<?php
if ( $group ) {
echo join( ' → ', array( $group, $email->title ) );
} else {
echo $email->title;
}
?>
</a>
</td>
<td class="description"><?php echo $email->description; ?></td>
<td class="manage"><a class="button" href="<?php echo esc_url( $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>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists