commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / CRM / Campaign / Page / SurveyType.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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * Page for displaying list of Gender
38 */
39 class CRM_Campaign_Page_SurveyType extends CRM_Core_Page_Basic {
40
41 public $useLivePageJS = TRUE;
42
43 /**
44 * The action links that we need to display for the browse screen.
45 *
46 * @var array
47 */
48 static $_links = NULL;
49
50 /**
51 * The option group name.
52 *
53 * @var array
54 */
55 protected $_gName;
56
57 /**
58 * The option group name in display format (capitalized, without underscores...etc)
59 *
60 * @var array
61 */
62 protected $_GName;
63
64 /**
65 * The option group id.
66 *
67 * @var array
68 */
69 protected $_gid = NULL;
70
71 /**
72 * Obtains the group name from url and sets the title.
73 *
74 * @return void
75 */
76 public function preProcess() {
77 $this->_gName = 'activity_type';
78
79 $this->_gid = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $this->_gName, 'id', 'name');
80
81 $this->_GName = 'Survey Type';
82
83 $this->assign('gName', $this->_gName);
84 $this->assign('GName', $this->_GName);
85
86 CRM_Utils_System::setTitle(ts('%1 Options', array(1 => $this->_GName)));
87
88 $this->assign('addSurveyType', CRM_Utils_System::url("civicrm/admin/campaign/surveyType", 'reset=1&action=add'));
89 }
90
91 /**
92 * Get BAO Name.
93 *
94 * @return string
95 * Classname of BAO.
96 */
97 public function getBAOName() {
98 return 'CRM_Core_BAO_OptionValue';
99 }
100
101 /**
102 * Get action Links.
103 *
104 * @return array
105 * (reference) of action links
106 */
107 public function &links() {
108 if (!(self::$_links)) {
109 self::$_links = array(
110 CRM_Core_Action::UPDATE => array(
111 'name' => ts('Edit'),
112 'url' => 'civicrm/admin/campaign/surveyType',
113 'qs' => 'action=update&id=%%id%%&reset=1',
114 'title' => ts('Edit %1', array(1 => $this->_gName)),
115 ),
116 CRM_Core_Action::DISABLE => array(
117 'name' => ts('Disable'),
118 'ref' => 'crm-enable-disable',
119 'title' => ts('Disable %1', array(1 => $this->_gName)),
120 ),
121 CRM_Core_Action::ENABLE => array(
122 'name' => ts('Enable'),
123 'ref' => 'crm-enable-disable',
124 'title' => ts('Enable %1', array(1 => $this->_gName)),
125 ),
126 CRM_Core_Action::DELETE => array(
127 'name' => ts('Delete'),
128 'url' => 'civicrm/admin/campaign/surveyType',
129 'qs' => 'action=delete&id=%%id%%',
130 'title' => ts('Delete %1 Type', array(1 => $this->_gName)),
131 ),
132 );
133 }
134 return self::$_links;
135 }
136
137 /**
138 * Run the basic page (run essentially starts execution for that page).
139 *
140 * @return void
141 */
142 public function run() {
143 $this->preProcess();
144 return parent::run();
145 }
146
147 /**
148 * Browse all options.
149 *
150 *
151 * @return void
152 */
153 public function browse() {
154 $campaingCompId = CRM_Core_Component::getComponentID('CiviCampaign');
155 $groupParams = array('name' => $this->_gName);
156 $optionValues = CRM_Core_OptionValue::getRows($groupParams, $this->links(), 'component_id,weight');
157
158 foreach ($optionValues as $key => $optionValue) {
159 if (CRM_Utils_Array::value('component_id', $optionValue) != $campaingCompId) {
160 unset($optionValues[$key]);
161 }
162 }
163
164 $returnURL = CRM_Utils_System::url("civicrm/admin/campaign/surveyType",
165 "reset=1"
166 );
167 $filter = "option_group_id = " . $this->_gid;
168 CRM_Utils_Weight::addOrder($optionValues, 'CRM_Core_DAO_OptionValue',
169 'id', $returnURL, $filter
170 );
171 $this->assign('rows', $optionValues);
172 }
173
174 /**
175 * Get name of edit form.
176 *
177 * @return string
178 * Classname of edit form.
179 */
180 public function editForm() {
181 return 'CRM_Campaign_Form_SurveyType';
182 }
183
184 /**
185 * Get edit form name.
186 *
187 * @return string
188 * name of this page.
189 */
190 public function editName() {
191 return $this->_GName;
192 }
193
194 /**
195 * Get user context.
196 *
197 * @param null $mode
198 *
199 * @return string
200 * user context.
201 */
202 public function userContext($mode = NULL) {
203 return 'civicrm/admin/campaign/surveyType';
204 }
205
206 /**
207 * Get userContext params.
208 *
209 * @param int $mode
210 * Mode that we are in.
211 *
212 * @return string
213 */
214 public function userContextParams($mode = NULL) {
215 return 'reset=1';
216 }
217
218 }