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 /** * Remove 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')); } $acl = $modx->getObject($scriptProperties['type'], $scriptProperties['id']); if ($acl === null) return $modx->error->failure($modx->lexicon('access_err_nf')); if ($acl->remove() == false) { return $modx->error->failure($modx->lexicon('access_err_remove')); } elseif ($modx->getUser()) { $modx->user->getAttributes(array(), '', true); } return $modx->error->success();