Current Path: > > opt > cloudlinux > alt-php55 > root > usr > share > pear > Symfony > Component > Security > Acl > Domain
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
Acl.php | File | 19808 bytes | December 18 2019 11:24:07. | |
AclCollectionCache.php | File | 2351 bytes | December 18 2019 11:24:07. | |
AuditLogger.php | File | 1373 bytes | December 18 2019 11:24:07. | |
DoctrineAclCache.php | File | 6318 bytes | December 18 2019 11:24:07. | |
Entry.php | File | 4611 bytes | December 18 2019 11:24:07. | |
FieldEntry.php | File | 1958 bytes | December 18 2019 11:24:07. | |
ObjectIdentity.php | File | 3161 bytes | December 18 2019 11:24:07. | |
ObjectIdentityRetrievalStrategy.php | File | 958 bytes | December 18 2019 11:24:07. | |
PermissionGrantingStrategy.php | File | 7636 bytes | December 18 2019 11:24:07. | |
RoleSecurityIdentity.php | File | 1597 bytes | December 18 2019 11:24:07. | |
SecurityIdentityRetrievalStrategy.php | File | 2984 bytes | December 18 2019 11:24:07. | |
UserSecurityIdentity.php | File | 3114 bytes | December 18 2019 11:24:07. |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Acl\Domain; use Symfony\Component\Security\Acl\Model\AclInterface; use Symfony\Component\Security\Acl\Model\FieldEntryInterface; use Symfony\Component\Security\Acl\Model\SecurityIdentityInterface; /** * Field-aware ACE implementation which is auditable * * @author Johannes M. Schmitt <schmittjoh@gmail.com> */ class FieldEntry extends Entry implements FieldEntryInterface { private $field; /** * Constructor * * @param integer $id * @param AclInterface $acl * @param string $field * @param SecurityIdentityInterface $sid * @param string $strategy * @param integer $mask * @param Boolean $granting * @param Boolean $auditFailure * @param Boolean $auditSuccess */ public function __construct($id, AclInterface $acl, $field, SecurityIdentityInterface $sid, $strategy, $mask, $granting, $auditFailure, $auditSuccess) { parent::__construct($id, $acl, $sid, $strategy, $mask, $granting, $auditFailure, $auditSuccess); $this->field = $field; } /** * {@inheritDoc} */ public function getField() { return $this->field; } /** * {@inheritDoc} */ public function serialize() { return serialize(array( $this->field, parent::serialize(), )); } /** * {@inheritDoc} */ public function unserialize($serialized) { list($this->field, $parentStr) = unserialize($serialized); parent::unserialize($parentStr); } }
SILENT KILLER Tool