You are here

function _ultimate_cron_job_export in Ultimate Cron 7.2

CTools Export export callback.

Export job.

Parameters

mixed $object: Name of job or UltimateCronJob object.

int $indent: Indent to use.

2 string references to '_ultimate_cron_job_export'
ultimate_cron_schema in ./ultimate_cron.install
Implements hook_schema().
ultimate_cron_update_7200 in ./ultimate_cron.install
Rename columns and indices to 2.x style.

File

./ultimate_cron.module, line 625

Code

function _ultimate_cron_job_export($object, $indent = '') {
  $object = (object) (array) $object;
  return ctools_export_object('ultimate_cron_job', $object, $indent);
}