File: /var/www/html/digisferach.sumar.com.py/wp-content/plugins/peepso/classes/adminmailqueue.php
<?php
class PeepSoAdminMailQueue
{
/**
* DIsplays the table for managing the Mail queue.
*/
public static function administration()
{
if (isset($_GET['action']) && 'process-mailqueue' === $_GET['action']
&& check_admin_referer('process-mailqueue-nonce')) {
PeepSoMailQueue::process_mailqueue();
$aProcessed = get_option('peepso_mailqueue_history');
$aLastProcessed = end($aProcessed);
if ($aLastProcessed['processed'] > 0) {
$iCountProcessed = $aLastProcessed['processed'];
$fElpasedTime = round($aLastProcessed['elapsed'], 2);
PeepSoAdmin::get_instance()->add_notice(
// @todo count failures
sprintf(__('%1$d %2$s processed in %3$d seconds', 'peepso-core'),
$iCountProcessed,
_n('email', 'emails', $iCountProcessed, 'peepso-core'),
$fElpasedTime),
'note');
} else {
PeepSoAdmin::get_instance()->add_notice(__('The Mail Queue is empty.', 'peepso-core'), 'note');
}
PeepSo::redirect(admin_url('admin.php?page=peepso-queue'));
}
$oPeepSoListTable = new PeepSoMailqueueListTable();
$oPeepSoListTable->prepare_items();
echo '<form id="form-mailqueue" method="post">';
wp_nonce_field('bulk-action', 'mailqueue-nonce');
$oPeepSoListTable->display();
echo '</form>';
PeepSoTemplate::exec_template('admin', 'queue-status-description', NULL, FALSE);
#echo "</div>";
}
}