3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2013
37 * This class holds all the Pseudo constants those
38 * are specific to Campaign and Survey.
40 class CRM_Campaign_PseudoConstant
extends CRM_Core_PseudoConstant
{
47 private static $activityType;
54 private static $campaignType = array();
61 private static $campaignStatus = array();
67 private static $engagementLevel;
70 * Get all the survey activity types
74 * @return array - array reference of all survey activity types.
77 public static function &activityType($returnColumn = 'name') {
78 $cacheKey = $returnColumn;
79 if (!isset(self
::$activityType[$cacheKey])) {
80 $campaingCompId = CRM_Core_Component
::getComponentID('CiviCampaign');
81 if ($campaingCompId) {
82 self
::$activityType[$cacheKey] = CRM_Core_OptionGroup
::values('activity_type',
84 " AND v.component_id={$campaingCompId}",
89 asort(self
::$activityType[$cacheKey]);
90 return self
::$activityType[$cacheKey];
94 * Get all campaign types.
96 * The static array campaignType is returned
101 * @return array - array reference of all campaign types.
104 public static function &campaignType() {
105 if (!self
::$campaignType) {
106 self
::$campaignType = CRM_Core_OptionGroup
::values('campaign_type');
108 asort(self
::$campaignType);
109 return self
::$campaignType;
113 * Get all campaign status.
115 * The static array campaignStatus is returned
120 * @return array - array reference of all campaign status.
123 public static function &campaignStatus() {
124 if (!self
::$campaignStatus) {
125 self
::$campaignStatus = CRM_Core_OptionGroup
::values('campaign_status');
127 asort(self
::$campaignStatus);
128 return self
::$campaignStatus;
132 * Get all Engagement Level.
134 * The static array Engagement Level is returned
139 * @return array - array reference of all Engagement Level.
141 public static function &engagementLevel() {
142 if (!isset(self
::$engagementLevel)) {
143 self
::$engagementLevel = CRM_Core_OptionGroup
::values('engagement_index');
146 return self
::$engagementLevel;
150 * Flush given pseudoconstant so it can be reread from db
151 * nex time it's requested.
156 * @param boolean $name pseudoconstant to be flushed
159 public static function flush($name) {