First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
262
sites/all/modules/civicrm/CRM/ACL/Page/ACL.php
Normal file
262
sites/all/modules/civicrm/CRM/ACL/Page/ACL.php
Normal file
|
@ -0,0 +1,262 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @package CRM
|
||||
* @copyright CiviCRM LLC (c) 2004-2017
|
||||
*/
|
||||
class CRM_ACL_Page_ACL extends CRM_Core_Page_Basic {
|
||||
|
||||
public $useLivePageJS = TRUE;
|
||||
|
||||
/**
|
||||
* The action links that we need to display for the browse screen.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
static $_links = NULL;
|
||||
|
||||
/**
|
||||
* Get BAO Name.
|
||||
*
|
||||
* @return string
|
||||
* Classname of BAO.
|
||||
*/
|
||||
public function getBAOName() {
|
||||
return 'CRM_ACL_BAO_ACL';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get action Links.
|
||||
*
|
||||
* @return array
|
||||
* (reference) of action links
|
||||
*/
|
||||
public function &links() {
|
||||
if (!(self::$_links)) {
|
||||
self::$_links = array(
|
||||
CRM_Core_Action::UPDATE => array(
|
||||
'name' => ts('Edit'),
|
||||
'url' => 'civicrm/acl',
|
||||
'qs' => 'reset=1&action=update&id=%%id%%',
|
||||
'title' => ts('Edit ACL'),
|
||||
),
|
||||
CRM_Core_Action::DISABLE => array(
|
||||
'name' => ts('Disable'),
|
||||
'ref' => 'crm-enable-disable',
|
||||
'title' => ts('Disable ACL'),
|
||||
),
|
||||
CRM_Core_Action::ENABLE => array(
|
||||
'name' => ts('Enable'),
|
||||
'ref' => 'crm-enable-disable',
|
||||
'title' => ts('Enable ACL'),
|
||||
),
|
||||
CRM_Core_Action::DELETE => array(
|
||||
'name' => ts('Delete'),
|
||||
'url' => 'civicrm/acl',
|
||||
'qs' => 'reset=1&action=delete&id=%%id%%',
|
||||
'title' => ts('Delete ACL'),
|
||||
),
|
||||
);
|
||||
}
|
||||
return self::$_links;
|
||||
}
|
||||
|
||||
/**
|
||||
* Run the page.
|
||||
*
|
||||
* Set the breadcrumb before beginning the standard page run.
|
||||
*/
|
||||
public function run() {
|
||||
// set breadcrumb to append to admin/access
|
||||
$breadCrumb = array(
|
||||
array(
|
||||
'title' => ts('Access Control'),
|
||||
'url' => CRM_Utils_System::url('civicrm/admin/access',
|
||||
'reset=1'
|
||||
),
|
||||
),
|
||||
);
|
||||
CRM_Utils_System::appendBreadCrumb($breadCrumb);
|
||||
|
||||
// parent run
|
||||
return parent::run();
|
||||
}
|
||||
|
||||
/**
|
||||
* Browse all acls.
|
||||
*/
|
||||
public function browse() {
|
||||
// get all acl's sorted by weight
|
||||
$acl = array();
|
||||
$query = "
|
||||
SELECT *
|
||||
FROM civicrm_acl
|
||||
WHERE ( object_table IN ( 'civicrm_saved_search', 'civicrm_uf_group', 'civicrm_custom_group', 'civicrm_event' ) )
|
||||
ORDER BY entity_id
|
||||
";
|
||||
$dao = CRM_Core_DAO::executeQuery($query);
|
||||
|
||||
$roles = CRM_Core_OptionGroup::values('acl_role');
|
||||
|
||||
$group = array(
|
||||
'-1' => ts('- select -'),
|
||||
'0' => ts('All Groups'),
|
||||
) + CRM_Core_PseudoConstant::group();
|
||||
$customGroup = array(
|
||||
'-1' => ts('- select -'),
|
||||
'0' => ts('All Custom Groups'),
|
||||
) + CRM_Core_PseudoConstant::get('CRM_Core_DAO_CustomField', 'custom_group_id');
|
||||
$ufGroup = array(
|
||||
'-1' => ts('- select -'),
|
||||
'0' => ts('All Profiles'),
|
||||
) + CRM_Core_PseudoConstant::get('CRM_Core_DAO_UFField', 'uf_group_id');
|
||||
|
||||
$event = array(
|
||||
'-1' => ts('- select -'),
|
||||
'0' => ts('All Events'),
|
||||
) + CRM_Event_PseudoConstant::event();
|
||||
|
||||
while ($dao->fetch()) {
|
||||
$acl[$dao->id] = array();
|
||||
$acl[$dao->id]['name'] = $dao->name;
|
||||
$acl[$dao->id]['operation'] = $dao->operation;
|
||||
$acl[$dao->id]['entity_id'] = $dao->entity_id;
|
||||
$acl[$dao->id]['entity_table'] = $dao->entity_table;
|
||||
$acl[$dao->id]['object_table'] = $dao->object_table;
|
||||
$acl[$dao->id]['object_id'] = $dao->object_id;
|
||||
$acl[$dao->id]['is_active'] = $dao->is_active;
|
||||
|
||||
if ($acl[$dao->id]['entity_id']) {
|
||||
$acl[$dao->id]['entity'] = CRM_Utils_Array::value($acl[$dao->id]['entity_id'], $roles);
|
||||
}
|
||||
else {
|
||||
$acl[$dao->id]['entity'] = ts('Everyone');
|
||||
}
|
||||
|
||||
switch ($acl[$dao->id]['object_table']) {
|
||||
case 'civicrm_saved_search':
|
||||
$acl[$dao->id]['object'] = CRM_Utils_Array::value($acl[$dao->id]['object_id'], $group);
|
||||
$acl[$dao->id]['object_name'] = ts('Group');
|
||||
break;
|
||||
|
||||
case 'civicrm_uf_group':
|
||||
$acl[$dao->id]['object'] = CRM_Utils_Array::value($acl[$dao->id]['object_id'], $ufGroup);
|
||||
$acl[$dao->id]['object_name'] = ts('Profile');
|
||||
break;
|
||||
|
||||
case 'civicrm_custom_group':
|
||||
$acl[$dao->id]['object'] = CRM_Utils_Array::value($acl[$dao->id]['object_id'], $customGroup);
|
||||
$acl[$dao->id]['object_name'] = ts('Custom Group');
|
||||
break;
|
||||
|
||||
case 'civicrm_event':
|
||||
$acl[$dao->id]['object'] = CRM_Utils_Array::value($acl[$dao->id]['object_id'], $event);
|
||||
$acl[$dao->id]['object_name'] = ts('Event');
|
||||
break;
|
||||
}
|
||||
|
||||
// form all action links
|
||||
$action = array_sum(array_keys($this->links()));
|
||||
|
||||
if ($dao->is_active) {
|
||||
$action -= CRM_Core_Action::ENABLE;
|
||||
}
|
||||
else {
|
||||
$action -= CRM_Core_Action::DISABLE;
|
||||
}
|
||||
|
||||
$acl[$dao->id]['action'] = CRM_Core_Action::formLink(
|
||||
self::links(),
|
||||
$action,
|
||||
array('id' => $dao->id),
|
||||
ts('more'),
|
||||
FALSE,
|
||||
'ACL.manage.action',
|
||||
'ACL',
|
||||
$dao->id
|
||||
);
|
||||
}
|
||||
$this->assign('rows', $acl);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name of edit form.
|
||||
*
|
||||
* @return string
|
||||
* Classname of edit form.
|
||||
*/
|
||||
public function editForm() {
|
||||
return 'CRM_ACL_Form_ACL';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get edit form name.
|
||||
*
|
||||
* @return string
|
||||
* name of this page.
|
||||
*/
|
||||
public function editName() {
|
||||
return 'ACL';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get user context.
|
||||
*
|
||||
* @param null $mode
|
||||
*
|
||||
* @return string
|
||||
* user context.
|
||||
*/
|
||||
public function userContext($mode = NULL) {
|
||||
return 'civicrm/acl';
|
||||
}
|
||||
|
||||
/**
|
||||
* Edit an ACL.
|
||||
*
|
||||
* @param int $mode
|
||||
* What mode for the form ?.
|
||||
* @param int $id
|
||||
* Id of the entity (for update, view operations).
|
||||
* @param bool $imageUpload
|
||||
* Not used in this case, but extended from CRM_Core_Page_Basic.
|
||||
* @param bool $pushUserContext
|
||||
* Not used in this case, but extended from CRM_Core_Page_Basic.
|
||||
*/
|
||||
public function edit($mode, $id = NULL, $imageUpload = FALSE, $pushUserContext = TRUE) {
|
||||
if ($mode & (CRM_Core_Action::UPDATE)) {
|
||||
if (isset($id)) {
|
||||
$aclName = CRM_Core_DAO::getFieldValue('CRM_ACL_DAO_ACL', $id);
|
||||
CRM_Utils_System::setTitle(ts('Edit ACL – %1', array(1 => $aclName)));
|
||||
}
|
||||
}
|
||||
parent::edit($mode, $id, $imageUpload, $pushUserContext);
|
||||
}
|
||||
|
||||
}
|
196
sites/all/modules/civicrm/CRM/ACL/Page/ACLBasic.php
Normal file
196
sites/all/modules/civicrm/CRM/ACL/Page/ACLBasic.php
Normal file
|
@ -0,0 +1,196 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @package CRM
|
||||
* @copyright CiviCRM LLC (c) 2004-2017
|
||||
*/
|
||||
class CRM_ACL_Page_ACLBasic extends CRM_Core_Page_Basic {
|
||||
|
||||
/**
|
||||
* The action links that we need to display for the browse screen.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
static $_links = NULL;
|
||||
|
||||
/**
|
||||
* Get BAO Name.
|
||||
*
|
||||
* @return string
|
||||
* Classname of BAO.
|
||||
*/
|
||||
public function getBAOName() {
|
||||
return 'CRM_ACL_BAO_ACL';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get action Links.
|
||||
*
|
||||
* @return array
|
||||
* (reference) of action links
|
||||
*/
|
||||
public function &links() {
|
||||
if (!(self::$_links)) {
|
||||
self::$_links = array(
|
||||
CRM_Core_Action::UPDATE => array(
|
||||
'name' => ts('Edit'),
|
||||
'url' => 'civicrm/acl/basic',
|
||||
'qs' => 'reset=1&action=update&id=%%id%%',
|
||||
'title' => ts('Edit ACL'),
|
||||
),
|
||||
CRM_Core_Action::DELETE => array(
|
||||
'name' => ts('Delete'),
|
||||
'url' => 'civicrm/acl/basic',
|
||||
'qs' => 'reset=1&action=delete&id=%%id%%',
|
||||
'title' => ts('Delete ACL'),
|
||||
),
|
||||
);
|
||||
}
|
||||
return self::$_links;
|
||||
}
|
||||
|
||||
/**
|
||||
* Run the page.
|
||||
*
|
||||
* This method is called after the page is created. It checks for the
|
||||
* type of action and executes that action.
|
||||
* Finally it calls the parent's run method.
|
||||
*/
|
||||
public function run() {
|
||||
$id = $this->getIdAndAction();
|
||||
|
||||
// set breadcrumb to append to admin/access
|
||||
$breadCrumb = array(
|
||||
array(
|
||||
'title' => ts('Access Control'),
|
||||
'url' => CRM_Utils_System::url('civicrm/admin/access', 'reset=1'),
|
||||
),
|
||||
);
|
||||
CRM_Utils_System::appendBreadCrumb($breadCrumb);
|
||||
|
||||
// what action to take ?
|
||||
if ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD | CRM_Core_Action::DELETE)) {
|
||||
$this->edit($this->_action, $id);
|
||||
}
|
||||
|
||||
// finally browse the acl's
|
||||
$this->browse();
|
||||
|
||||
// This replaces parent run, but do parent's parent run
|
||||
return CRM_Core_Page::run();
|
||||
}
|
||||
|
||||
/**
|
||||
* Browse all acls.
|
||||
*/
|
||||
public function browse() {
|
||||
|
||||
// get all acl's sorted by weight
|
||||
$acl = array();
|
||||
$query = "
|
||||
SELECT *
|
||||
FROM civicrm_acl
|
||||
WHERE ( object_table NOT IN ( 'civicrm_saved_search', 'civicrm_uf_group', 'civicrm_custom_group' ) )
|
||||
ORDER BY entity_id
|
||||
";
|
||||
$dao = CRM_Core_DAO::executeQuery($query);
|
||||
|
||||
$roles = CRM_Core_OptionGroup::values('acl_role');
|
||||
|
||||
$permissions = CRM_Core_Permission::basicPermissions();
|
||||
while ($dao->fetch()) {
|
||||
if (!array_key_exists($dao->entity_id, $acl)) {
|
||||
$acl[$dao->entity_id] = array();
|
||||
$acl[$dao->entity_id]['name'] = $dao->name;
|
||||
$acl[$dao->entity_id]['entity_id'] = $dao->entity_id;
|
||||
$acl[$dao->entity_id]['entity_table'] = $dao->entity_table;
|
||||
$acl[$dao->entity_id]['object_table'] = CRM_Utils_Array::value($dao->object_table, $permissions);
|
||||
$acl[$dao->entity_id]['is_active'] = 1;
|
||||
|
||||
if ($acl[$dao->entity_id]['entity_id']) {
|
||||
$acl[$dao->entity_id]['entity'] = $roles[$acl[$dao->entity_id]['entity_id']];
|
||||
}
|
||||
else {
|
||||
$acl[$dao->entity_id]['entity'] = ts('Any Role');
|
||||
}
|
||||
|
||||
// form all action links
|
||||
$action = array_sum(array_keys($this->links()));
|
||||
|
||||
$acl[$dao->entity_id]['action'] = CRM_Core_Action::formLink(
|
||||
self::links(),
|
||||
$action,
|
||||
array('id' => $dao->entity_id),
|
||||
ts('more'),
|
||||
FALSE,
|
||||
'aclRole.manage.action',
|
||||
'ACLRole',
|
||||
$dao->entity_id
|
||||
);
|
||||
}
|
||||
elseif (!empty($permissions[$dao->object_table])) {
|
||||
$acl[$dao->entity_id]['object_table'] .= ", {$permissions[$dao->object_table]}";
|
||||
}
|
||||
}
|
||||
$this->assign('rows', $acl);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name of edit form.
|
||||
*
|
||||
* @return string
|
||||
* Classname of edit form.
|
||||
*/
|
||||
public function editForm() {
|
||||
return 'CRM_ACL_Form_ACLBasic';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get edit form name.
|
||||
*
|
||||
* @return string
|
||||
* name of this page.
|
||||
*/
|
||||
public function editName() {
|
||||
return 'Core ACLs';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get user context.
|
||||
*
|
||||
* @param null $mode
|
||||
*
|
||||
* @return string
|
||||
* user context.
|
||||
*/
|
||||
public function userContext($mode = NULL) {
|
||||
return 'civicrm/acl/basic';
|
||||
}
|
||||
|
||||
}
|
206
sites/all/modules/civicrm/CRM/ACL/Page/EntityRole.php
Normal file
206
sites/all/modules/civicrm/CRM/ACL/Page/EntityRole.php
Normal file
|
@ -0,0 +1,206 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @package CRM
|
||||
* @copyright CiviCRM LLC (c) 2004-2017
|
||||
*/
|
||||
class CRM_ACL_Page_EntityRole extends CRM_Core_Page_Basic {
|
||||
|
||||
public $useLivePageJS = TRUE;
|
||||
|
||||
/**
|
||||
* The action links that we need to display for the browse screen.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
static $_links = NULL;
|
||||
|
||||
/**
|
||||
* Get BAO Name.
|
||||
*
|
||||
* @return string
|
||||
* Classname of BAO.
|
||||
*/
|
||||
public function getBAOName() {
|
||||
return 'CRM_ACL_BAO_EntityRole';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get action Links.
|
||||
*
|
||||
* @return array
|
||||
* (reference) of action links
|
||||
*/
|
||||
public function &links() {
|
||||
if (!(self::$_links)) {
|
||||
self::$_links = array(
|
||||
CRM_Core_Action::UPDATE => array(
|
||||
'name' => ts('Edit'),
|
||||
'url' => 'civicrm/acl/entityrole',
|
||||
'qs' => 'action=update&id=%%id%%',
|
||||
'title' => ts('Edit ACL Role Assignment'),
|
||||
),
|
||||
CRM_Core_Action::DISABLE => array(
|
||||
'name' => ts('Disable'),
|
||||
'ref' => 'crm-enable-disable',
|
||||
'title' => ts('Disable ACL Role Assignment'),
|
||||
),
|
||||
CRM_Core_Action::ENABLE => array(
|
||||
'name' => ts('Enable'),
|
||||
'ref' => 'crm-enable-disable',
|
||||
'title' => ts('Enable ACL Role Assignment'),
|
||||
),
|
||||
CRM_Core_Action::DELETE => array(
|
||||
'name' => ts('Delete'),
|
||||
'url' => 'civicrm/acl/entityrole',
|
||||
'qs' => 'action=delete&id=%%id%%',
|
||||
'title' => ts('Delete ACL Role Assignment'),
|
||||
),
|
||||
);
|
||||
}
|
||||
return self::$_links;
|
||||
}
|
||||
|
||||
/**
|
||||
* Run the page.
|
||||
*
|
||||
* This method is called after the page is created. It checks for the
|
||||
* type of action and executes that action.
|
||||
* Finally it calls the parent's run method.
|
||||
*/
|
||||
public function run() {
|
||||
$id = $this->getIdAndAction();
|
||||
|
||||
// set breadcrumb to append to admin/access
|
||||
$breadCrumb = array(
|
||||
array(
|
||||
'title' => ts('Access Control'),
|
||||
'url' => CRM_Utils_System::url('civicrm/admin/access',
|
||||
'reset=1'
|
||||
),
|
||||
),
|
||||
);
|
||||
CRM_Utils_System::appendBreadCrumb($breadCrumb);
|
||||
CRM_Utils_System::setTitle(ts('Assign Users to Roles'));
|
||||
|
||||
// what action to take ?
|
||||
if ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD | CRM_Core_Action::DELETE)) {
|
||||
$this->edit($this->_action, $id);
|
||||
}
|
||||
|
||||
// reset cache if enabled/disabled
|
||||
if ($this->_action & (CRM_Core_Action::DISABLE | CRM_Core_Action::ENABLE)) {
|
||||
CRM_ACL_BAO_Cache::resetCache();
|
||||
}
|
||||
|
||||
// finally browse the acl's
|
||||
if ($this->_action & CRM_Core_Action::BROWSE) {
|
||||
$this->browse();
|
||||
}
|
||||
|
||||
// This replaces parent run, but do parent's parent run
|
||||
return CRM_Core_Page::run();
|
||||
}
|
||||
|
||||
/**
|
||||
* Browse all acls.
|
||||
*/
|
||||
public function browse() {
|
||||
|
||||
// get all acl's sorted by weight
|
||||
$entityRoles = array();
|
||||
$dao = new CRM_ACL_DAO_EntityRole();
|
||||
$dao->find();
|
||||
|
||||
$aclRoles = CRM_Core_OptionGroup::values('acl_role');
|
||||
$groups = CRM_Core_PseudoConstant::staticGroup();
|
||||
|
||||
while ($dao->fetch()) {
|
||||
$entityRoles[$dao->id] = array();
|
||||
CRM_Core_DAO::storeValues($dao, $entityRoles[$dao->id]);
|
||||
|
||||
$entityRoles[$dao->id]['acl_role'] = CRM_Utils_Array::value($dao->acl_role_id, $aclRoles);
|
||||
$entityRoles[$dao->id]['entity'] = $groups[$dao->entity_id];
|
||||
|
||||
// form all action links
|
||||
$action = array_sum(array_keys($this->links()));
|
||||
if ($dao->is_active) {
|
||||
$action -= CRM_Core_Action::ENABLE;
|
||||
}
|
||||
else {
|
||||
$action -= CRM_Core_Action::DISABLE;
|
||||
}
|
||||
|
||||
$entityRoles[$dao->id]['action'] = CRM_Core_Action::formLink(
|
||||
self::links(),
|
||||
$action,
|
||||
array('id' => $dao->id),
|
||||
ts('more'),
|
||||
FALSE,
|
||||
'entityRole.manage.action',
|
||||
'EntityRole',
|
||||
$dao->id
|
||||
);
|
||||
}
|
||||
$this->assign('rows', $entityRoles);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name of edit form.
|
||||
*
|
||||
* @return string
|
||||
* Classname of edit form.
|
||||
*/
|
||||
public function editForm() {
|
||||
return 'CRM_ACL_Form_EntityRole';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get edit form name.
|
||||
*
|
||||
* @return string
|
||||
* name of this page.
|
||||
*/
|
||||
public function editName() {
|
||||
return 'ACL EntityRole';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get user context.
|
||||
*
|
||||
* @param null $mode
|
||||
*
|
||||
* @return string
|
||||
* user context.
|
||||
*/
|
||||
public function userContext($mode = NULL) {
|
||||
return 'civicrm/acl/entityrole';
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue