Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 666 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 666 Bytes

Events: Cron

Provide the cron hooks as events.

$GLOBALS['TL_EVENTS']['cron.monthly'][] = function($event) {
	// run monthly
};

$GLOBALS['TL_EVENTS']['cron.weekly'][] = function($event) {
	// run weekly
};

$GLOBALS['TL_EVENTS']['cron.daily'][] = function($event) {
	// run daily
};

$GLOBALS['TL_EVENTS']['cron.hourly'][] = function($event) {
	// run hourly
};

// only support in Contao 3.0 or newer
$GLOBALS['TL_EVENTS']['cron.minutely'][] = function($event) {
	// run minutely
};

See the event dispatcher documentation for more examples how to listen on an event.