You are here

function hook_ultimate_cron_plugin_build_operations in Ultimate Cron 8.2

Alter the allowed operations for a given job on the export UI page.

This hook can also be implemented inside a plugin as a method: build_operations_alter($job, &$allowed_operations). It will only be run for the currently active plugin for the job.

Parameters

CronJob $job: The job in question.

array &$allowed_operations: Allowed operations for this job.

File

./ultimate_cron.api.php, line 273
Hooks provided by Ultimate Cron.

Code

function hook_ultimate_cron_plugin_build_operations($job, &$allowed_operations) {
}