CRM_Admin_Form_Preferences - Fix loading of settings
[civicrm-core.git] / CRM / Admin / Form / OptionGroup.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33
34/**
ce064e4f 35 * This class generates form components for Option Group.
6a488035
TO
36 */
37class CRM_Admin_Form_OptionGroup extends CRM_Admin_Form {
38
39 /**
eceb18cc 40 * Build the form object.
6a488035
TO
41 */
42 public function buildQuickForm() {
43 parent::buildQuickForm();
44 if ($this->_action & CRM_Core_Action::DELETE) {
45 return;
46 }
47 CRM_Utils_System::setTitle(ts('Dropdown Options'));
48
49 $this->applyFilter('__ALL__', 'trim');
50 $this->add('text',
51 'name',
52 ts('Name'),
53 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionGroup', 'name'),
54 TRUE
55 );
56 $this->addRule('name',
57 ts('Name already exists in Database.'),
58 'objectExists',
59 array('CRM_Core_DAO_OptionGroup', $this->_id)
60 );
61
62 $this->add('text',
63 'title',
64 ts('Group Title'),
65 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionGroup', 'title')
66 );
67
68 $this->add('text',
69 'description',
70 ts('Description'),
71 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionGroup', 'description')
72 );
73
74 $element = $this->add('checkbox', 'is_active', ts('Enabled?'));
75 if ($this->_action & CRM_Core_Action::UPDATE) {
76 if (in_array($this->_values['name'], array(
353ffa53
TO
77 'encounter_medium',
78 'case_type',
af9b09df 79 'case_status',
353ffa53 80 ))) {
6a488035
TO
81 static $caseCount = NULL;
82 if (!isset($caseCount)) {
83 $caseCount = CRM_Case_BAO_Case::caseCount(NULL, FALSE);
84 }
85
86 if ($caseCount > 0) {
87 $element->freeze();
88 }
89 }
a7488080 90 if (!empty($this->_values['is_reserved'])) {
6a488035
TO
91 $this->freeze(array('name', 'is_active'));
92 }
93 }
94
95 $this->assign('id', $this->_id);
96 }
97
98 /**
eceb18cc 99 * Process the form submission.
6a488035
TO
100 */
101 public function postProcess() {
102 CRM_Utils_System::flushCache();
103
104 $params = $this->exportValues();
105 if ($this->_action & CRM_Core_Action::DELETE) {
106 CRM_Core_BAO_OptionGroup::del($this->_id);
107 CRM_Core_Session::setStatus(ts('Selected option group has been deleted.'), ts('Record Deleted'), 'success');
108 }
109 else {
110
111 $params = $ids = array();
112 // store the submitted values in an array
113 $params = $this->exportValues();
114
115 if ($this->_action & CRM_Core_Action::UPDATE) {
116 $ids['optionGroup'] = $this->_id;
117 }
118
119 $optionGroup = CRM_Core_BAO_OptionGroup::add($params, $ids);
120 CRM_Core_Session::setStatus(ts('The Option Group \'%1\' has been saved.', array(1 => $optionGroup->name)), ts('Saved'), 'success');
121 }
122 }
96025800 123
6a488035 124}