Файловый менеджер - Редактировать - /home/tuudkjt/globeasy/wp-content/plugins/easy-wp-smtp/src/Tasks/Queue/CleanupQueueTask.php
Назад
<?php namespace EasyWPSMTP\Tasks\Queue; use DateTime; use DateTimeZone; use EasyWPSMTP\Queue\Attachments; use EasyWPSMTP\Tasks\Task; use EasyWPSMTP\Tasks\Tasks; /** * Class CleanupQueueTask. * * @since 2.6.0 */ class CleanupQueueTask extends Task { /** * Action name for this task. * * @since 2.6.0 */ const ACTION = 'easy_wp_smtp_queue_cleanup'; /** * Class constructor. * * @since 2.6.0 */ public function __construct() { parent::__construct( self::ACTION ); } /** * Initialize the task. * * @since 2.6.0 */ public function init() { // phpcs:ignore WPForms.PHP.HooksMethod.InvalidPlaceForAddingHooks // Register the action handler. add_action( self::ACTION, [ $this, 'process' ] ); // Exit if this task the queue is disabled, or it's already scheduled. if ( ! easy_wp_smtp()->get_queue()->is_enabled() || Tasks::is_scheduled( self::ACTION ) !== false ) { return; } // Schedule the task. $this->recurring( strtotime( 'now' ), DAY_IN_SECONDS ) ->unique() ->register(); } /** * Perform email sending. * * @since 2.6.0 */ public function process() { $queue = easy_wp_smtp()->get_queue(); $attachments = new Attachments(); // Cleanup processed emails. $queue->cleanup(); // Cleanup older-than-a-month attachments. $attachments->delete_attachments( null, new DateTime( '1 month ago', new DateTimeZone( 'UTC' ) ) ); if ( ! $queue->is_enabled() ) { // If the query has been disabled in the meanwhile, // and there aren't any emails left, // cancel the cleanup task. $queued_emails_count = $queue->count_queued_emails(); $processed_emails_count = $queue->count_processed_emails(); if ( $queued_emails_count === 0 && $processed_emails_count === 0 ) { // Cleanup any remaining, older-than-an-hour attachments. $attachments->delete_attachments( null, new DateTime( '1 hour ago', new DateTimeZone( 'UTC' ) ) ); $this->cancel_force(); } } } }
| ver. 1.6 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка