phpcs fix
[civicrm-core.git] / CRM / Campaign / Info.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
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. |
13 | |
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. |
18 | |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * This class introduces component to the system and provides all the
30 * information about it. It needs to extend CRM_Core_Component_Info
31 * abstract class.
32 *
33 * @package CRM
34 * @copyright CiviCRM LLC (c) 2004-2015
35 * $Id$
36 *
37 */
38 class CRM_Campaign_Info extends CRM_Core_Component_Info {
39
40 /**
41 * @inheritDoc
42 */
43 protected $keyword = 'campaign';
44
45 /**
46 * @inheritDoc
47 * @return array
48 */
49 public function getInfo() {
50 return array(
51 'name' => 'CiviCampaign',
52 'translatedName' => ts('CiviCampaign'),
53 'title' => 'CiviCRM Campaign Engine',
54 'search' => 1,
55 'showActivitiesInCore' => 1,
56 );
57 }
58
59
60 /**
61 * @inheritDoc
62 * @param bool $getAllUnconditionally
63 * @param bool $descriptions
64 * Whether to return permission descriptions
65 *
66 * @return array
67 */
68 public function getPermissions($getAllUnconditionally = FALSE, $descriptions = FALSE) {
69 $permissions = array(
70 'administer CiviCampaign' => array(
71 ts('administer CiviCampaign'),
72 ts('Create new campaign, survey and petition types and their status'),
73 ),
74 'manage campaign' => array(
75 ts('manage campaign'),
76 ts('Create new campaigns, surveys and petitions, reserve respondents'),
77 ),
78 'reserve campaign contacts' => array(
79 ts('reserve campaign contacts'),
80 ts('Reserve campaign contacts for surveys and petitions'),
81 ),
82 'release campaign contacts' => array(
83 ts('release campaign contacts'),
84 ts('Release reserved campaign contacts for surveys and petitions'),
85 ),
86 'interview campaign contacts' => array(
87 ts('interview campaign contacts'),
88 ts('Record survey and petition responses from their reserved contacts'),
89 ),
90 'gotv campaign contacts' => array(
91 ts('GOTV campaign contacts'),
92 ts('Record that contacts voted'),
93 ),
94 'sign CiviCRM Petition' => array(
95 ts('sign CiviCRM Petition'),
96 ),
97 );
98
99 if (!$descriptions) {
100 foreach ($permissions as $name => $attr) {
101 $permissions[$name] = array_shift($attr);
102 }
103 }
104
105 return $permissions;
106 }
107
108
109 /**
110 * @inheritDoc
111 * @return null
112 */
113 public function getUserDashboardElement() {
114 // no dashboard element for this component
115 return NULL;
116 }
117
118 /**
119 * @return null
120 */
121 public function getUserDashboardObject() {
122 // no dashboard element for this component
123 return NULL;
124 }
125
126 /**
127 * @inheritDoc
128 * @return null
129 */
130 public function registerTab() {
131 // this component doesn't use contact record tabs
132 return NULL;
133 }
134
135 /**
136 * @inheritDoc
137 * @return null
138 */
139 public function registerAdvancedSearchPane() {
140 // this component doesn't use advanced search
141 return NULL;
142 }
143
144 /**
145 * @inheritDoc
146 */
147 public function getActivityTypes() {
148 return NULL;
149 }
150
151 /**
152 * add shortcut to Create New.
153 * @param $shortCuts
154 */
155 public function creatNewShortcut(&$shortCuts) {
156 if (CRM_Core_Permission::check('manage campaign') ||
157 CRM_Core_Permission::check('administer CiviCampaign')
158 ) {
159 $shortCuts = array_merge($shortCuts, array(
160 array(
161 'path' => 'civicrm/campaign/add',
162 'query' => "reset=1&action=add",
163 'ref' => 'new-campaign',
164 'title' => ts('Campaign'),
165 ),
166 array(
167 'path' => 'civicrm/survey/add',
168 'query' => "reset=1&action=add",
169 'ref' => 'new-survey',
170 'title' => ts('Survey'),
171 ),
172 ));
173 }
174 }
175
176 }