PluginProbe
WP Crontrol / trunk
WP Crontrol vtrunk
1.21.2 trunk 0.1 0.2 0.3 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.1 1.10.0 1.11.0 1.12.0 1.12.1 1.13.0 1.13.1 1.13.2 1.14.0 1.15.0 1.15.1 1.15.2 1.15.3 1.16.0 1.16.1 1.16.2 All 57 releases
wp-crontrol / src / Event / CrontrolEvent.php

CrontrolEvent.php in WP Crontrol trunk, at src/Event/CrontrolEvent.php

24 lines 442 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Base class for WP Crontrol managed events (PHP and URL cron events).
4 */
5
6 namespace Crontrol\Event;
7
8 /**
9 * Abstract base class for WP Crontrol managed events.
10 *
11 * Provides common logic for PHP and URL cron events.
12 */
13 abstract class CrontrolEvent extends Event {
14 #[\Override]
15 final public function hook_name_editable(): bool {
16 return false;
17 }
18
19 #[\Override]
20 final public function pausable(): bool {
21 return false;
22 }
23 }
24