copyValues($params); return $job->save(); } /** * Retrieve DB object based on input parameters. * * It also stores all the retrieved values in the default array. * * @param array $params * (reference ) an assoc array of name/value pairs. * @param array $defaults * (reference ) an assoc array to hold the flattened values. * * @return CRM_Core_DAO_Job|null * object on success, null otherwise */ public static function retrieve(&$params, &$defaults) { $job = new CRM_Core_DAO_Job(); $job->copyValues($params); if ($job->find(TRUE)) { CRM_Core_DAO::storeValues($job, $defaults); return $job; } return NULL; } /** * Update the is_active flag in the db. * * @param int $id * Id of the database record. * @param bool $is_active * Value we want to set the is_active field. * * @return bool * true if we found and updated the object, else false */ public static function setIsActive($id, $is_active) { return CRM_Core_DAO::setFieldValue('CRM_Core_DAO_Job', $id, 'is_active', $is_active); } /** * Function to delete scheduled job. * * @param $jobID * ID of the job to be deleted. * * @return bool|null */ public static function del($jobID) { if (!$jobID) { CRM_Core_Error::fatal(ts('Invalid value passed to delete function.')); } $dao = new CRM_Core_DAO_Job(); $dao->id = $jobID; if (!$dao->find(TRUE)) { return NULL; } if ($dao->delete()) { return TRUE; } } /** * Trim job table on a regular basis to keep it at a good size. * * CRM-10513 * * @param int $maxEntriesToKeep * @param int $minDaysToKeep */ public static function cleanup($maxEntriesToKeep = 1000, $minDaysToKeep = 30) { // Prevent the job log from getting too big // For now, keep last minDays days and at least maxEntries records $query = 'SELECT COUNT(*) FROM civicrm_job_log'; $count = CRM_Core_DAO::singleValueQuery($query); if ($count <= $maxEntriesToKeep) { return; } $count = $count - $maxEntriesToKeep; $query = "DELETE FROM civicrm_job_log WHERE run_time < SUBDATE(NOW(), $minDaysToKeep) LIMIT $count"; CRM_Core_DAO::executeQuery($query); } /** * Make a copy of a Job. * * @param int $id The job id to copy. * @param array $params * @return CRM_Core_DAO */ public static function copy($id, $params = []) { $fieldsFix = [ 'suffix' => [ 'name' => ' - ' . ts('Copy'), ], 'replace' => $params, ]; $copy = CRM_Core_DAO::copyGeneric('CRM_Core_DAO_Job', ['id' => $id], NULL, $fieldsFix); $copy->save(); CRM_Utils_Hook::copy('Job', $copy); return $copy; } }