Merge pull request #14252 from jitendrapurohit/core-961
[civicrm-core.git] / CRM / ACL / Form / EntityRole.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
32 */
33 class CRM_ACL_Form_EntityRole extends CRM_Admin_Form {
34
35 /**
36 * Build the form object.
37 */
38 public function buildQuickForm() {
39 parent::buildQuickForm();
40
41 if ($this->_action & CRM_Core_Action::DELETE) {
42 return;
43 }
44
45 $aclRoles = ['' => ts('- select -')] + CRM_Core_OptionGroup::values('acl_role');
46 $this->add('select', 'acl_role_id', ts('ACL Role'),
47 $aclRoles, TRUE
48 );
49
50 $label = ts('Assigned to');
51 $group = ['' => ts('- select group -')] + CRM_Core_PseudoConstant::staticGroup(FALSE, 'Access');
52 $this->add('select', 'entity_id', $label, $group, TRUE, ['class' => 'crm-select2 huge']);
53
54 $this->add('checkbox', 'is_active', ts('Enabled?'));
55 }
56
57 /**
58 * Process the form submission.
59 */
60 public function postProcess() {
61 CRM_ACL_BAO_Cache::resetCache();
62
63 if ($this->_action & CRM_Core_Action::DELETE) {
64 CRM_ACL_BAO_EntityRole::del($this->_id);
65 CRM_Core_Session::setStatus(ts('Selected Entity Role has been deleted.'), ts('Record Deleted'), 'success');
66 }
67 else {
68 $params = $this->controller->exportValues($this->_name);
69 if ($this->_id) {
70 $params['id'] = $this->_id;
71 }
72
73 $params['entity_table'] = 'civicrm_group';
74 CRM_ACL_BAO_EntityRole::create($params);
75 }
76 }
77
78 }