You are here

function hook_ultimate_cron_plugin_build_operations_alter in Ultimate Cron 7.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

UltimateCronJob $job: The job in question.

array &$allowed_operations: Allowed operations for this job.

1 invocation of hook_ultimate_cron_plugin_build_operations_alter()
UltimateCronJob::build_operations_alter in ./ultimate_cron.job.inc
Allow a job to alter the allowed operations on it in the Export UI.

File

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

Code

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