Merge remote-tracking branch 'upstream/4.5' into 4.5-4.6-2015-03-23-18-42-19
[civicrm-core.git] / CRM / ACL / Form / EntityRole.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 *
38 * @package CRM
06b69b18 39 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
40 * $Id$
41 *
42 */
43class CRM_ACL_Form_EntityRole extends CRM_Admin_Form {
44
45 /**
d2e5d2ce 46 * Build the form object.
6a488035 47 *
355ba699 48 * @return void
6a488035
TO
49 */
50 public function buildQuickForm() {
51 parent::buildQuickForm();
52
53 if ($this->_action & CRM_Core_Action::DELETE) {
54 return;
55 }
56
57 $attributes = CRM_Core_DAO::getAttribute('CRM_ACL_DAO_EntityRole');
58
59 $aclRoles = array('' => ts('- select -')) + CRM_Core_OptionGroup::values('acl_role');
60 $this->add('select', 'acl_role_id', ts('ACL Role'),
61 $aclRoles, TRUE
62 );
63
3bd48a28 64 $label = ts('Assigned to');
6a488035 65 $group = array('' => ts('- select group -')) + CRM_Core_PseudoConstant::staticGroup(FALSE, 'Access');
7310566a 66 $this->add('select', 'entity_id', $label, $group, TRUE, array('class' => 'crm-select2 huge'));
6a488035
TO
67
68 $this->add('checkbox', 'is_active', ts('Enabled?'));
69 }
70
71 /**
d2e5d2ce 72 * Process the form submission.
6a488035 73 *
6a488035 74 *
355ba699 75 * @return void
6a488035
TO
76 */
77 public function postProcess() {
78 CRM_ACL_BAO_Cache::resetCache();
79
80 if ($this->_action & CRM_Core_Action::DELETE) {
81 CRM_ACL_BAO_EntityRole::del($this->_id);
82 CRM_Core_Session::setStatus(ts('Selected Entity Role has been deleted.'), ts('Record Deleted'), 'success');
83 }
84 else {
85 $params = $this->controller->exportValues($this->_name);
86 if ($this->_id) {
87 $params['id'] = $this->_id;
88 }
89
90 $params['entity_table'] = 'civicrm_group';
91 CRM_ACL_BAO_EntityRole::create($params);
92 }
93 }
96025800 94
6a488035 95}