X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCampaign%2FTask.php;h=dff92989e82fb224d62ed8812ae81cb20f18ca8d;hb=b6c94f4299662a8de454f3ff7dcf7095d52edb5d;hp=17d1de5e281fcb694da36e99281f4ecc2cec93fd;hpb=7da04cdea71382ff22ffd94e9b3ae9915c25422b;p=civicrm-core.git diff --git a/CRM/Campaign/Task.php b/CRM/Campaign/Task.php index 17d1de5e28..dff92989e8 100755 --- a/CRM/Campaign/Task.php +++ b/CRM/Campaign/Task.php @@ -1,9 +1,9 @@ array( - 'title' => ts('Record Respondents Interview'), + self::$_tasks = array( + 1 => array( + 'title' => ts('Record Respondents Interview'), 'class' => array( 'CRM_Campaign_Form_Task_Interview', 'CRM_Campaign_Form_Task_Release', @@ -109,11 +107,10 @@ class CRM_Campaign_Task { * These tasks are the core set of task titles * on voters. * - * @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) { @@ -129,10 +126,10 @@ class CRM_Campaign_Task { * * @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 = self::taskTitles(); return $tasks; @@ -144,11 +141,10 @@ class CRM_Campaign_Task { * * @param int $value * - * @return array the set of tasks for a group of voters. - * @static - * @access public + * @return array + * the set of tasks for a group of voters. */ - static function getTask($value) { + public static function getTask($value) { self::tasks(); if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) { // make the interview task by default @@ -160,5 +156,5 @@ class CRM_Campaign_Task { self::$_tasks[$value]['result'], ); } -} +}