You are here

function _ultimate_cron_job_export_settings in Ultimate Cron 7.2

CTools Export field 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_settings'
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 610

Code

function _ultimate_cron_job_export_settings($object, $field, $value, $indent = '') {

  // $value = $object->getSettings();
  return ctools_var_export($value, $indent);
}