Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/www/core/model/modx/processors/security/access/ |
<?php /** * Gets an ACL. * * @param string $type The class_key for the ACL. * @param string $id The ID of the ACL. * * @package modx * @subpackage processors.security.access */ $modx->lexicon->load('access'); if (!$modx->hasPermission('access_permissions')) return $modx->error->failure($modx->lexicon('permission_denied')); if (!isset($scriptProperties['type']) || !isset($scriptProperties['id'])) { return $modx->error->failure($modx->lexicon('access_type_err_ns')); } $accessClass = $scriptProperties['type']; $accessId = $scriptProperties['id']; $aclArray = array(); if ($acl = $modx->getObject($accessClass, $accessId)) { $aclArray = $acl->toArray(); } return $modx->error->success('', $aclArray);