X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCampaign%2FTask.php;h=033772253c905961e6b688e4e77d5f3fb492f32c;hb=c3d2bf84c6cd14ef48f719df9c323e04daa874ab;hp=db4f7f563587154f7ed7d97a5f4536bc53f41ac0;hpb=d44a51e500618f1d9abfad4cc6de65cf20226c10;p=civicrm-core.git diff --git a/CRM/Campaign/Task.php b/CRM/Campaign/Task.php index db4f7f5635..033772253c 100755 --- a/CRM/Campaign/Task.php +++ b/CRM/Campaign/Task.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,12 +23,12 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2014 + * @copyright CiviCRM LLC (c) 2004-2015 * $Id$ * */ @@ -46,7 +46,6 @@ class CRM_Campaign_Task { * The task array * * @var array - * @static */ static $_tasks = NULL; @@ -54,7 +53,6 @@ class CRM_Campaign_Task { * The optional task array * * @var array - * @static */ static $_optionalTasks = NULL; @@ -62,13 +60,14 @@ class CRM_Campaign_Task { * These tasks are the core set of tasks that the user can perform * on a voter / group of voters * - * @return array the set of tasks for a group of voters. - * @static + * @return array + * the set of tasks for a group of voters. */ public static function &tasks() { if (!(self::$_tasks)) { - self::$_tasks = array(1 => 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', @@ -108,8 +107,8 @@ class CRM_Campaign_Task { * These tasks are the core set of task titles * on voters. * - * @return array the set of task titles - * @static + * @return array + * the set of task titles */ public static function &taskTitles() { self::tasks(); @@ -127,7 +126,8 @@ class CRM_Campaign_Task { * * @param int $permission * - * @return array set of tasks that are valid for the user + * @return array + * set of tasks that are valid for the user */ public static function &permissionedTaskTitles($permission) { $tasks = self::taskTitles(); @@ -141,8 +141,8 @@ class CRM_Campaign_Task { * * @param int $value * - * @return array the set of tasks for a group of voters. - * @static + * @return array + * the set of tasks for a group of voters. */ public static function getTask($value) { self::tasks(); @@ -156,4 +156,5 @@ class CRM_Campaign_Task { self::$_tasks[$value]['result'], ); } + }