Merge pull request #9197 from seamuslee001/4.7.12-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 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
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
45 $attributes = CRM_Core_DAO::getAttribute('CRM_ACL_DAO_EntityRole');
46
47 $aclRoles = array('' => ts('- select -')) + CRM_Core_OptionGroup::values('acl_role');
48 $this->add('select', 'acl_role_id', ts('ACL Role'),
49 $aclRoles, TRUE
50 );
51
3bd48a28 52 $label = ts('Assigned to');
6a488035 53 $group = array('' => ts('- select group -')) + CRM_Core_PseudoConstant::staticGroup(FALSE, 'Access');
7310566a 54 $this->add('select', 'entity_id', $label, $group, TRUE, array('class' => 'crm-select2 huge'));
6a488035
TO
55
56 $this->add('checkbox', 'is_active', ts('Enabled?'));
57 }
58
59 /**
d2e5d2ce 60 * Process the form submission.
6a488035
TO
61 */
62 public function postProcess() {
63 CRM_ACL_BAO_Cache::resetCache();
64
65 if ($this->_action & CRM_Core_Action::DELETE) {
66 CRM_ACL_BAO_EntityRole::del($this->_id);
67 CRM_Core_Session::setStatus(ts('Selected Entity Role has been deleted.'), ts('Record Deleted'), 'success');
68 }
69 else {
70 $params = $this->controller->exportValues($this->_name);
71 if ($this->_id) {
72 $params['id'] = $this->_id;
73 }
74
75 $params['entity_table'] = 'civicrm_group';
76 CRM_ACL_BAO_EntityRole::create($params);
77 }
78 }
96025800 79
6a488035 80}