Merge pull request #10630 from tschuettler/CRM-CRM-20841
[civicrm-core.git] / CRM / Admin / Form / OptionGroup.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
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 * This class generates form components for Option Group.
36 */
37 class CRM_Admin_Form_OptionGroup extends CRM_Admin_Form {
38
39 /**
40 * Explicitly declare the entity api name.
41 */
42 public function getDefaultEntity() {
43 return 'OptionGroup';
44 }
45
46 /**
47 * Build the form object.
48 */
49 public function buildQuickForm() {
50 parent::buildQuickForm();
51 if ($this->_action & CRM_Core_Action::DELETE) {
52 return;
53 }
54 CRM_Utils_System::setTitle(ts('Dropdown Options'));
55
56 $this->applyFilter('__ALL__', 'trim');
57 $this->add('text',
58 'name',
59 ts('Name'),
60 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionGroup', 'name'),
61 TRUE
62 );
63 $this->addRule('name',
64 ts('Name already exists in Database.'),
65 'objectExists',
66 array('CRM_Core_DAO_OptionGroup', $this->_id)
67 );
68
69 $this->add('text',
70 'title',
71 ts('Group Title'),
72 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionGroup', 'title')
73 );
74
75 $this->add('text',
76 'description',
77 ts('Description'),
78 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionGroup', 'description')
79 );
80
81 $this->addSelect('data_type', array('options' => CRM_Utils_Type::dataTypes()), TRUE);
82
83 $element = $this->add('checkbox', 'is_active', ts('Enabled?'));
84 if ($this->_action & CRM_Core_Action::UPDATE) {
85 if (in_array($this->_values['name'], array(
86 'encounter_medium',
87 'case_type',
88 'case_status',
89 ))) {
90 static $caseCount = NULL;
91 if (!isset($caseCount)) {
92 $caseCount = CRM_Case_BAO_Case::caseCount(NULL, FALSE);
93 }
94
95 if ($caseCount > 0) {
96 $element->freeze();
97 }
98 }
99 if (!empty($this->_values['is_reserved'])) {
100 $this->freeze(array('name', 'is_active'));
101 }
102 }
103
104 $this->assign('id', $this->_id);
105 }
106
107 /**
108 * Process the form submission.
109 */
110 public function postProcess() {
111 CRM_Utils_System::flushCache();
112
113 $params = $this->exportValues();
114 if ($this->_action & CRM_Core_Action::DELETE) {
115 CRM_Core_BAO_OptionGroup::del($this->_id);
116 CRM_Core_Session::setStatus(ts('Selected option group has been deleted.'), ts('Record Deleted'), 'success');
117 }
118 else {
119
120 $params = $ids = array();
121 // store the submitted values in an array
122 $params = $this->exportValues();
123
124 if ($this->_action & CRM_Core_Action::UPDATE) {
125 $ids['optionGroup'] = $this->_id;
126 }
127
128 $optionGroup = CRM_Core_BAO_OptionGroup::add($params, $ids);
129 CRM_Core_Session::setStatus(ts('The Option Group \'%1\' has been saved.', array(1 => $optionGroup->name)), ts('Saved'), 'success');
130 }
131 }
132
133 }