X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FActionSchedule.php;h=44152465dcf5d7b10547a5a9393026952dc00721;hb=ace09e1280e28e7a8f9a8657b2c6b88bdb6c0389;hp=1d89f72b3adae1977b412fdc39756556a329f034;hpb=389bcebf543e6293648a6c09e162652c1385b768;p=civicrm-core.git diff --git a/api/v3/ActionSchedule.php b/api/v3/ActionSchedule.php index 1d89f72b3a..44152465dc 100644 --- a/api/v3/ActionSchedule.php +++ b/api/v3/ActionSchedule.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 4.6 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2014 | + | Copyright CiviCRM LLC (c) 2004-2015 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -23,70 +23,63 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** - * File for the CiviCRM APIv3 for Scheduled Reminders + * This api exposes CiviCRM Scheduled Reminders. * * @package CiviCRM_APIv3 - * @subpackage API_ActionSchedule - * - * @copyright CiviCRM LLC (c) 2004-2014 - * */ /** - * Get CiviCRM Action Schedule details - * {@getfields action_schedule_create} + * Get CiviCRM ActionSchedule details. + * * @param array $params + * * @return array */ function civicrm_api3_action_schedule_get($params) { - return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'action_schedule'); + return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'ActionSchedule'); } /** - * Create a new Action Schedule + * Create a new ActionSchedule. * * @param array $params * * @return array - * - * {@getfields action_schedule_create} */ function civicrm_api3_action_schedule_create($params) { civicrm_api3_verify_one_mandatory($params, NULL, array('start_action_date', 'absolute_date')); if (!array_key_exists('name', $params) && !array_key_exists('id', $params)) { $params['name'] = CRM_Utils_String::munge($params['title']); } - return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'action_schedule'); + return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'ActionSchedule'); } /** - * Adjust Metadata for Create action + * Adjust Metadata for Create action. + * + * The metadata is used for setting defaults, documentation & validation. * - * The metadata is used for setting defaults, documentation & validation * @param array $params - * Array or parameters determined by getfields. + * Array of parameters determined by getfields. */ function _civicrm_api3_action_schedule_create_spec(&$params) { $params['title']['api.required'] = TRUE; $params['mapping_id']['api.required'] = TRUE; - // $params['entity_status']['api.required'] = TRUE; $params['entity_value']['api.required'] = TRUE; } /** - * delete an existing action_schedule + * Delete an existing ActionSchedule. * * @param array $params - * Array containing id of the action_schedule. - * to be deleted + * Array containing id of the action_schedule to be deleted. * * @return array * API result array - * */ function civicrm_api3_action_schedule_delete($params) { return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);