X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCase%2FTask.php;h=0b6205fd43be148afd2606b0473762b7649002bc;hb=a35ed67905aa77fce0fa43ad68d4e103fb0de022;hp=916ca52dfd17fc18f6157b2d3d7fc41d413d8571;hpb=66c6206c9d19f2aa13ff0f7051c9952b6fbdad50;p=civicrm-core.git diff --git a/CRM/Case/Task.php b/CRM/Case/Task.php index 916ca52dfd..0b6205fd43 100644 --- a/CRM/Case/Task.php +++ b/CRM/Case/Task.php @@ -1,9 +1,9 @@ array('title' => ts('Delete Cases'), + 1 => array( + 'title' => ts('Delete Cases'), 'class' => 'CRM_Case_Form_Task_Delete', 'result' => FALSE, ), - 2 => array('title' => ts('Print Cases'), + 2 => array( + 'title' => ts('Print Selected Rows'), 'class' => 'CRM_Case_Form_Task_Print', 'result' => FALSE, ), - 3 => array('title' => ts('Export Cases'), + 3 => array( + 'title' => ts('Export Cases'), 'class' => array( 'CRM_Export_Form_Select', 'CRM_Export_Form_Map', ), 'result' => FALSE, ), - 4 => array('title' => ts('Restore Cases'), + 4 => array( + 'title' => ts('Restore Cases'), 'class' => 'CRM_Case_Form_Task_Restore', 'result' => FALSE, ), @@ -100,46 +101,41 @@ class CRM_Case_Task { } /** - * These tasks are the core set of task titles + * These tasks are the core set of task titles. * - * @return array the set of task titles - * @static - * @access public + * @return array + * the set of task titles */ - static function &taskTitles() { + public static function &taskTitles() { self::tasks(); $titles = array(); foreach (self::$_tasks as $id => $value) { - // skip Print Cases task - if ($id != 2) { - $titles[$id] = $value['title']; - } + $titles[$id] = $value['title']; } return $titles; } /** - * These tasks get added based on the context the user is in + * These tasks get added based on the context the user is in. * - * @return array the set of optional tasks for a group of contacts - * @static - * @access public + * @return array + * the set of optional tasks for a group of contacts */ - static function &optionalTaskTitle() { + public static function &optionalTaskTitle() { $tasks = array(); return $tasks; } /** - * show tasks selectively based on the permission level + * Show tasks selectively based on the permission level. * of the user * * @param int $permission * - * @return array set of tasks that are valid for the user - * @access public + * @return array + * set of tasks that are valid for the user */ - static function &permissionedTaskTitles($permission) { + public static function &permissionedTaskTitles($permission) { $tasks = array(); if (($permission == CRM_Core_Permission::EDIT) || CRM_Core_Permission::check('access all cases and activities') @@ -160,15 +156,14 @@ class CRM_Case_Task { } /** - * These tasks are the core set of tasks + * These tasks are the core set of tasks. * * @param int $value * - * @return array the set of tasks for a group of contacts - * @static - * @access public + * @return array + * the set of tasks for a group of contacts */ - static function getTask($value) { + public static function getTask($value) { self::tasks(); if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) { // make the print task by default @@ -180,5 +175,5 @@ class CRM_Case_Task { self::$_tasks[$value]['result'], ); } -} +}