commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Admin / Page / Options.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_Admin_Page_Options 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 static $_gName = NULL;
56
57 /**
58 * The option group name in display format (capitalized, without underscores...etc)
59 *
60 * @var array
61 */
62 static $_gLabel = NULL;
63
64 /**
65 * The option group id.
66 *
67 * @var array
68 */
69 static $_gId = NULL;
70
71 /**
72 * A boolean determining if you can add options to this group in the GUI.
73 *
74 * @var boolean
75 */
76 static $_isLocked = FALSE;
77
78 /**
79 * Obtains the group name from url string or id from $_GET['gid'].
80 * Sets the title.
81 *
82 * @return void
83 */
84 public function preProcess() {
85 if (!self::$_gName && !empty($this->urlPath[3])) {
86 self::$_gName = $this->urlPath[3];
87 }
88 // If an id arg is passed instead of a group name in the path
89 elseif (!self::$_gName && !empty($_GET['gid'])) {
90 self::$_gId = $_GET['gid'];
91 self::$_gName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', self::$_gId, 'name');
92 self::$_isLocked = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', self::$_gId, 'is_locked');
93 $breadCrumb = array(
94 'title' => ts('Option Groups'),
95 'url' => CRM_Utils_System::url('civicrm/admin/options', 'reset=1'),
96 );
97 CRM_Utils_System::appendBreadCrumb(array($breadCrumb));
98 }
99 if (!self::$_gName) {
100 self::$_gName = $this->get('gName');
101 }
102 // If we don't have a group we will browse all groups
103 if (!self::$_gName) {
104 return;
105 }
106 $this->set('gName', self::$_gName);
107 if (!self::$_gId) {
108 self::$_gId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', self::$_gName, 'id', 'name');
109 }
110
111 self::$_gLabel = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', self::$_gId, 'title');
112 if (!self::$_gLabel) {
113 self::$_gLabel = ts('Option');
114 }
115
116 $this->assign('gName', self::$_gName);
117 $this->assign('gLabel', self::$_gLabel);
118
119 if (self::$_gName == 'acl_role') {
120 CRM_Utils_System::setTitle(ts('Manage ACL Roles'));
121 // set breadcrumb to append to admin/access
122 $breadCrumb = array(
123 array(
124 'title' => ts('Access Control'),
125 'url' => CRM_Utils_System::url('civicrm/admin/access',
126 'reset=1'
127 ),
128 ),
129 );
130 CRM_Utils_System::appendBreadCrumb($breadCrumb);
131 }
132 else {
133 CRM_Utils_System::setTitle(ts("%1 Options", array(1 => self::$_gLabel)));
134 }
135 if (in_array(self::$_gName,
136 array(
137 'from_email_address',
138 'email_greeting',
139 'postal_greeting',
140 'addressee',
141 'communication_style',
142 'case_status',
143 'encounter_medium',
144 'case_type',
145 'payment_instrument',
146 'soft_credit_type',
147 'website_type',
148 )
149 )) {
150 $this->assign('showIsDefault', TRUE);
151 }
152
153 if (self::$_gName == 'participant_role') {
154 $this->assign('showCounted', TRUE);
155 }
156 $this->assign('isLocked', self::$_isLocked);
157 $config = CRM_Core_Config::singleton();
158 if (self::$_gName == 'activity_type') {
159 $this->assign('showComponent', TRUE);
160 }
161 }
162
163 /**
164 * Get BAO Name.
165 *
166 * @return string
167 * Classname of BAO.
168 */
169 public function getBAOName() {
170 return self::$_gName ? 'CRM_Core_BAO_OptionValue' : 'CRM_Core_BAO_OptionGroup';
171 }
172
173 /**
174 * Get action Links.
175 *
176 * @return array
177 * (reference) of action links
178 */
179 public function &links() {
180 if (!(self::$_links)) {
181 self::$_links = array(
182 CRM_Core_Action::UPDATE => array(
183 'name' => ts('Edit'),
184 'url' => 'civicrm/admin/options/' . self::$_gName,
185 'qs' => 'action=update&id=%%id%%&reset=1',
186 'title' => ts('Edit %1', array(1 => self::$_gName)),
187 ),
188 CRM_Core_Action::DISABLE => array(
189 'name' => ts('Disable'),
190 'ref' => 'crm-enable-disable',
191 'title' => ts('Disable %1', array(1 => self::$_gName)),
192 ),
193 CRM_Core_Action::ENABLE => array(
194 'name' => ts('Enable'),
195 'ref' => 'crm-enable-disable',
196 'title' => ts('Enable %1', array(1 => self::$_gName)),
197 ),
198 CRM_Core_Action::DELETE => array(
199 'name' => ts('Delete'),
200 'url' => 'civicrm/admin/options/' . self::$_gName,
201 'qs' => 'action=delete&id=%%id%%',
202 'title' => ts('Delete %1 Type', array(1 => self::$_gName)),
203 ),
204 );
205
206 if (self::$_gName == 'custom_search') {
207 $runLink = array(
208 CRM_Core_Action::FOLLOWUP => array(
209 'name' => ts('Run'),
210 'url' => 'civicrm/contact/search/custom',
211 'qs' => 'reset=1&csid=%%value%%',
212 'title' => ts('Run %1', array(1 => self::$_gName)),
213 'class' => 'no-popup',
214 ),
215 );
216 self::$_links = $runLink + self::$_links;
217 }
218 }
219 return self::$_links;
220 }
221
222 /**
223 * Run the basic page (run essentially starts execution for that page).
224 *
225 * @return void
226 */
227 public function run() {
228 $this->preProcess();
229 return parent::run();
230 }
231
232 /**
233 * Browse all options.
234 *
235 *
236 * @return void
237 */
238 public function browse() {
239 if (!self::$_gName) {
240 return parent::browse();
241 }
242 $groupParams = array('name' => self::$_gName);
243 $optionValue = CRM_Core_OptionValue::getRows($groupParams, $this->links(), 'component_id,weight');
244 $gName = self::$_gName;
245 $returnURL = CRM_Utils_System::url("civicrm/admin/options/$gName",
246 "reset=1&group=$gName"
247 );
248 $filter = "option_group_id = " . self::$_gId;
249 CRM_Utils_Weight::addOrder($optionValue, 'CRM_Core_DAO_OptionValue',
250 'id', $returnURL, $filter
251 );
252
253 // retrieve financial account name for the payment instrument page
254 if ($gName = "payment_instrument") {
255 foreach ($optionValue as $key => $option) {
256 $optionValue[$key]['financial_account'] = CRM_Financial_BAO_FinancialTypeAccount::getFinancialAccount($key, 'civicrm_option_value');
257 }
258 }
259 $this->assign('rows', $optionValue);
260 }
261
262 /**
263 * Get name of edit form.
264 *
265 * @return string
266 * Classname of edit form.
267 */
268 public function editForm() {
269 return self::$_gName ? 'CRM_Admin_Form_Options' : 'CRM_Admin_Form_OptionGroup';
270 }
271
272 /**
273 * Get edit form name.
274 *
275 * @return string
276 * name of this page.
277 */
278 public function editName() {
279 return self::$_gLabel;
280 }
281
282 /**
283 * Get user context.
284 *
285 * @param null $mode
286 *
287 * @return string
288 * user context.
289 */
290 public function userContext($mode = NULL) {
291 return 'civicrm/admin/options' . (self::$_gName ? '/' . self::$_gName : '');
292 }
293
294 }