array( 'name' => ts('Edit'), 'url' => 'civicrm/admin/scheduleReminders', 'qs' => 'action=update&id=%%id%%&reset=1', 'title' => ts('Edit Schedule Reminders'), ), CRM_Core_Action::ENABLE => array( 'name' => ts('Enable'), 'extra' => 'onclick = "enableDisable( %%id%%,\'' . 'CRM_Core_BAO_ActionSchedule' . '\',\'' . 'disable-enable' . '\' );"', 'ref' => 'enable-action', 'title' => ts('Enable Label Format'), ), CRM_Core_Action::DISABLE => array( 'name' => ts('Disable'), 'extra' => 'onclick = "enableDisable( %%id%%,\'' . 'CRM_Core_BAO_ActionSchedule' . '\',\'' . 'enable-disable' . '\' );"', 'ref' => 'disable-action', 'title' => ts('Disable Label Format'), ), CRM_Core_Action::DELETE => array( 'name' => ts('Delete'), 'url' => 'civicrm/admin/scheduleReminders', 'qs' => 'action=delete&id=%%id%%', 'title' => ts('Delete Schedule Reminders'), ), ); } return self::$_links; } /** * Get name of edit form * * @return string Classname of edit form. */ function editForm() { return 'CRM_Admin_Form_ScheduleReminders'; } /** * Get edit form name * * @return string name of this page. */ function editName() { return 'ScheduleReminders'; } /** * Get user context. * * @return string user context. */ function userContext($mode = NULL) { return 'civicrm/admin/scheduleReminders'; } /** * Browse all Scheduled Reminders settings. * * @return void * @access public * @static */ function browse($action = NULL) { // Get list of configured reminders $reminderList = CRM_Core_BAO_ActionSchedule::getList(); if (is_array($reminderList)) { // Add action links to each of the reminders foreach ($reminderList as & $format) { $action = array_sum(array_keys($this->links())); if ($format['is_active']) { $action -= CRM_Core_Action::ENABLE; } else { $action -= CRM_Core_Action::DISABLE; } $format['action'] = CRM_Core_Action::formLink(self::links(), $action, array('id' => $format['id'])); } } $this->assign('rows', $reminderList); } }