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