Merge pull request #2061 from civicrm/4.3
[civicrm-core.git] / CRM / ACL / Form / EntityRole.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36/**
37 *
38 * @package CRM
39 * @copyright CiviCRM LLC (c) 2004-2013
40 * $Id$
41 *
42 */
43class CRM_ACL_Form_EntityRole extends CRM_Admin_Form {
44
45 /**
46 * Function to build the form
47 *
48 * @return None
49 * @access public
50 */
51 public function buildQuickForm() {
52 parent::buildQuickForm();
53
54 if ($this->_action & CRM_Core_Action::DELETE) {
55 return;
56 }
57
58 $attributes = CRM_Core_DAO::getAttribute('CRM_ACL_DAO_EntityRole');
59
60 $aclRoles = array('' => ts('- select -')) + CRM_Core_OptionGroup::values('acl_role');
61 $this->add('select', 'acl_role_id', ts('ACL Role'),
62 $aclRoles, TRUE
63 );
64
65
66
67 $label = ts('Assigned To');
68 $group = array('' => ts('- select group -')) + CRM_Core_PseudoConstant::staticGroup(FALSE, 'Access');
69 $this->add('select', 'entity_id', $label, $group, TRUE);
70
71 $this->add('checkbox', 'is_active', ts('Enabled?'));
72 }
73
74 /**
75 * Function to process the form
76 *
77 * @access public
78 *
79 * @return None
80 */
81 public function postProcess() {
82 CRM_ACL_BAO_Cache::resetCache();
83
84 if ($this->_action & CRM_Core_Action::DELETE) {
85 CRM_ACL_BAO_EntityRole::del($this->_id);
86 CRM_Core_Session::setStatus(ts('Selected Entity Role has been deleted.'), ts('Record Deleted'), 'success');
87 }
88 else {
89 $params = $this->controller->exportValues($this->_name);
90 if ($this->_id) {
91 $params['id'] = $this->_id;
92 }
93
94 $params['entity_table'] = 'civicrm_group';
95 CRM_ACL_BAO_EntityRole::create($params);
96 }
97 }
98}
99