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