Merge pull request #10293 from civicrm/4.7.19-rc
[civicrm-core.git] / CRM / ACL / Form / EntityRole.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
6a488035
TO
32 */
33class CRM_ACL_Form_EntityRole extends CRM_Admin_Form {
34
35 /**
d2e5d2ce 36 * Build the form object.
6a488035
TO
37 */
38 public function buildQuickForm() {
39 parent::buildQuickForm();
40
41 if ($this->_action & CRM_Core_Action::DELETE) {
42 return;
43 }
44
6a488035
TO
45 $aclRoles = array('' => ts('- select -')) + CRM_Core_OptionGroup::values('acl_role');
46 $this->add('select', 'acl_role_id', ts('ACL Role'),
47 $aclRoles, TRUE
48 );
49
3bd48a28 50 $label = ts('Assigned to');
6a488035 51 $group = array('' => ts('- select group -')) + CRM_Core_PseudoConstant::staticGroup(FALSE, 'Access');
7310566a 52 $this->add('select', 'entity_id', $label, $group, TRUE, array('class' => 'crm-select2 huge'));
6a488035
TO
53
54 $this->add('checkbox', 'is_active', ts('Enabled?'));
55 }
56
57 /**
d2e5d2ce 58 * Process the form submission.
6a488035
TO
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 }
96025800 77
6a488035 78}