# wp-crontrol/trunk/src/Event/CrontrolEvent.php

WP Crontrol, version trunk. 24 lines.

- Page: https://pluginprobe.com/plugins/wp-crontrol/trunk/code/src/Event/CrontrolEvent.php
- Raw: https://pluginprobe.com/plugins/wp-crontrol/trunk/raw/src/Event/CrontrolEvent.php
- Modified: 2025-12-17T11:59:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-crontrol/trunk/code/src/Event/CrontrolEvent.php#L10-L20`.

```php
<?php
/**
 * Base class for WP Crontrol managed events (PHP and URL cron events).
 */

namespace Crontrol\Event;

/**
 * Abstract base class for WP Crontrol managed events.
 *
 * Provides common logic for PHP and URL cron events.
 */
abstract class CrontrolEvent extends Event {
	#[\Override]
	final public function hook_name_editable(): bool {
		return false;
	}

	#[\Override]
	final public function pausable(): bool {
		return false;
	}
}

```
