X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCase%2FTask.php;h=0b6205fd43be148afd2606b0473762b7649002bc;hb=a35ed67905aa77fce0fa43ad68d4e103fb0de022;hp=919d827f8d08a80ceb3222773c2b0f45cfaeddce;hpb=68d6b897b10ec82e276280d07d9614c79561639d;p=civicrm-core.git diff --git a/CRM/Case/Task.php b/CRM/Case/Task.php index 919d827f8d..0b6205fd43 100644 --- a/CRM/Case/Task.php +++ b/CRM/Case/Task.php @@ -1,9 +1,9 @@ array( @@ -104,13 +101,12 @@ 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) { @@ -120,27 +116,26 @@ class CRM_Case_Task { } /** - * 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') @@ -161,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 @@ -181,5 +175,5 @@ class CRM_Case_Task { self::$_tasks[$value]['result'], ); } -} +}