ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-13 10:46:02
Editing: CronBasedBackgroundTask.php
Cancel
Save Changes
<?php /** * Abstract class CronBasedBackgroundTask. * * @package AmpProject\AmpWP */ namespace AmpProject\AmpWP\BackgroundTask; use AmpProject\AmpWP\Infrastructure\Registerable; use AmpProject\AmpWP\Infrastructure\Service; /** * Abstract base class for using cron to execute a background task. * * @package AmpProject\AmpWP * @since 2.0 * @internal */ abstract class CronBasedBackgroundTask implements Service, Registerable { const DEFAULT_INTERVAL_HOURLY = 'hourly'; const DEFAULT_INTERVAL_TWICE_DAILY = 'twicedaily'; const DEFAULT_INTERVAL_DAILY = 'daily'; /** * BackgroundTaskDeactivator instance. * * @var BackgroundTaskDeactivator */ protected $background_task_deactivator; /** * Class constructor. * * @param BackgroundTaskDeactivator $background_task_deactivator Service that deactivates background events. */ public function __construct( BackgroundTaskDeactivator $background_task_deactivator ) { $this->background_task_deactivator = $background_task_deactivator; } /** * Register the service with the system. * * @return void */ public function register() { $this->background_task_deactivator->add_event( $this->get_event_name() ); } /** * Schedule the event. * * @param mixed[] ...$args Arguments passed to the function from the action hook. */ abstract protected function schedule_event( ...$args ); /** * Get the event name. * * This is the "slug" of the event, not the display name. * * Note: the event name should be prefixed to prevent naming collisions. * * @return string Name of the event. */ abstract protected function get_event_name(); /** * Process the event. * * @param mixed[] ...$args Args to pass to the process callback. */ abstract public function process( ...$args ); }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete