PHP 클래스 Phalcon\Acl\Adapter\Database

상속: extends Phalcon\Acl\Adapter
파일 보기 프로젝트 열기: phalcon/incubator

보호된 프로퍼티들

프로퍼티 타입 설명
$accessList string Access List table
$connection Phalcon\Db\AdapterInterface
$noArgumentsDefaultAction integer Default action for no arguments is allow
$resources string Resources table
$resourcesAccesses string Resources Accesses table
$roles string Roles table
$rolesInherits string Roles Inherits table

공개 메소드들

메소드 설명
__construct ( array $options ) Class constructor.
addInherit ( string $roleName, string $roleToInherit )
addResource ( Phalcon\Acl\Resource | string $resource, array | string $accessList = null ) : boolean {@inheritdoc} Example: Add a resource to the the list allowing access to an action $acl->addResource(new Phalcon\Acl\Resource('customers'), 'search'); $acl->addResource('customers', 'search'); Add a resource with an access list $acl->addResource(new Phalcon\Acl\Resource('customers'), ['create', 'search']); $acl->addResource('customers', ['create', 'search']);
addResourceAccess ( string $resourceName, array | string $accessList ) : boolean
addRole ( Phalcon\Acl\Role | string $role, string $accessInherits = null ) : boolean
allow ( string $roleName, string $resourceName, array | string $access, mixed $func = null ) {@inheritdoc} You can use '*' as wildcard Example: Allow access to guests to search on customers $acl->allow('guests', 'customers', 'search'); Allow access to guests to search or create on customers $acl->allow('guests', 'customers', ['search', 'create']); Allow access to any role to browse on products $acl->allow('*', 'products', 'browse'); Allow access to any role to browse on any resource $acl->allow('*', '*', 'browse');
deny ( string $roleName, string $resourceName, array | string $access, mixed $func = null ) : boolean {@inheritdoc} You can use '*' as wildcard Example: Deny access to guests to search on customers $acl->deny('guests', 'customers', 'search'); Deny access to guests to search or create on customers $acl->deny('guests', 'customers', ['search', 'create']); Deny access to any role to browse on products $acl->deny('*', 'products', 'browse'); Deny access to any role to browse on any resource $acl->deny('*', '*', 'browse');
dropResourceAccess ( string $resourceName, array | string $accessList )
getNoArgumentsDefaultAction ( ) : integer Returns the default ACL access level for no arguments provided in isAllowed action if there exists func for accessKey
getResources ( ) : Phalcon\Acl\Resource[]
getRoles ( ) : Phalcon\Acl\RoleInterface[]
isAllowed ( string $role, string $resource, string $access, array $parameters = null ) : boolean {@inheritdoc} Example: Does Andres have access to the customers resource to create? $acl->isAllowed('Andres', 'Products', 'create'); Do guests have access to any resource to edit? $acl->isAllowed('guests', '*', 'edit');
isResource ( string $resourceName ) : boolean
isRole ( string $roleName ) : boolean
setNoArgumentsDefaultAction ( integer $defaultAccess ) Sets the default access level for no arguments provided in isAllowed action if there exists func for accessKey

보호된 메소드들

메소드 설명
allowOrDeny ( string $roleName, string $resourceName, array | string $access, integer $action ) Inserts/Updates a permission in the access list
insertOrUpdateAccess ( string $roleName, string $resourceName, string $accessName, integer $action ) : boolean Inserts/Updates a permission in the access list

메소드 상세

__construct() 공개 메소드

Class constructor.
public __construct ( array $options )
$options array Adapter config

addInherit() 공개 메소드

public addInherit ( string $roleName, string $roleToInherit )
$roleName string
$roleToInherit string

addResource() 공개 메소드

{@inheritdoc} Example: Add a resource to the the list allowing access to an action $acl->addResource(new Phalcon\Acl\Resource('customers'), 'search'); $acl->addResource('customers', 'search'); Add a resource with an access list $acl->addResource(new Phalcon\Acl\Resource('customers'), ['create', 'search']); $acl->addResource('customers', ['create', 'search']);
public addResource ( Phalcon\Acl\Resource | string $resource, array | string $accessList = null ) : boolean
$resource Phalcon\Acl\Resource | string
$accessList array | string
리턴 boolean

addResourceAccess() 공개 메소드

public addResourceAccess ( string $resourceName, array | string $accessList ) : boolean
$resourceName string
$accessList array | string
리턴 boolean

addRole() 공개 메소드

Example: $acl->addRole(new Phalcon\Acl\Role('administrator'), 'consultor'); $acl->addRole('administrator', 'consultor');
public addRole ( Phalcon\Acl\Role | string $role, string $accessInherits = null ) : boolean
$role Phalcon\Acl\Role | string
$accessInherits string
리턴 boolean

allow() 공개 메소드

{@inheritdoc} You can use '*' as wildcard Example: Allow access to guests to search on customers $acl->allow('guests', 'customers', 'search'); Allow access to guests to search or create on customers $acl->allow('guests', 'customers', ['search', 'create']); Allow access to any role to browse on products $acl->allow('*', 'products', 'browse'); Allow access to any role to browse on any resource $acl->allow('*', '*', 'browse');
public allow ( string $roleName, string $resourceName, array | string $access, mixed $func = null )
$roleName string
$resourceName string
$access array | string
$func mixed

allowOrDeny() 보호된 메소드

Inserts/Updates a permission in the access list
protected allowOrDeny ( string $roleName, string $resourceName, array | string $access, integer $action )
$roleName string
$resourceName string
$access array | string
$action integer

deny() 공개 메소드

{@inheritdoc} You can use '*' as wildcard Example: Deny access to guests to search on customers $acl->deny('guests', 'customers', 'search'); Deny access to guests to search or create on customers $acl->deny('guests', 'customers', ['search', 'create']); Deny access to any role to browse on products $acl->deny('*', 'products', 'browse'); Deny access to any role to browse on any resource $acl->deny('*', '*', 'browse');
public deny ( string $roleName, string $resourceName, array | string $access, mixed $func = null ) : boolean
$roleName string
$resourceName string
$access array | string
$func mixed
리턴 boolean

dropResourceAccess() 공개 메소드

public dropResourceAccess ( string $resourceName, array | string $accessList )
$resourceName string
$accessList array | string

getNoArgumentsDefaultAction() 공개 메소드

Returns the default ACL access level for no arguments provided in isAllowed action if there exists func for accessKey

getResources() 공개 메소드

public getResources ( ) : Phalcon\Acl\Resource[]
리턴 Phalcon\Acl\Resource[]

getRoles() 공개 메소드

public getRoles ( ) : Phalcon\Acl\RoleInterface[]
리턴 Phalcon\Acl\RoleInterface[]

insertOrUpdateAccess() 보호된 메소드

Inserts/Updates a permission in the access list
protected insertOrUpdateAccess ( string $roleName, string $resourceName, string $accessName, integer $action ) : boolean
$roleName string
$resourceName string
$accessName string
$action integer
리턴 boolean

isAllowed() 공개 메소드

{@inheritdoc} Example: Does Andres have access to the customers resource to create? $acl->isAllowed('Andres', 'Products', 'create'); Do guests have access to any resource to edit? $acl->isAllowed('guests', '*', 'edit');
public isAllowed ( string $role, string $resource, string $access, array $parameters = null ) : boolean
$role string
$resource string
$access string
$parameters array
리턴 boolean

isResource() 공개 메소드

public isResource ( string $resourceName ) : boolean
$resourceName string
리턴 boolean

isRole() 공개 메소드

public isRole ( string $roleName ) : boolean
$roleName string
리턴 boolean

setNoArgumentsDefaultAction() 공개 메소드

Sets the default access level for no arguments provided in isAllowed action if there exists func for accessKey
public setNoArgumentsDefaultAction ( integer $defaultAccess )
$defaultAccess integer Phalcon\Acl::ALLOW or Phalcon\Acl::DENY

프로퍼티 상세

$accessList 보호되어 있는 프로퍼티

Access List table
protected string $accessList
리턴 string

$connection 보호되어 있는 프로퍼티

protected AdapterInterface,Phalcon\Db $connection
리턴 Phalcon\Db\AdapterInterface

$noArgumentsDefaultAction 보호되어 있는 프로퍼티

Default action for no arguments is allow
protected int $noArgumentsDefaultAction
리턴 integer

$resources 보호되어 있는 프로퍼티

Resources table
protected string $resources
리턴 string

$resourcesAccesses 보호되어 있는 프로퍼티

Resources Accesses table
protected string $resourcesAccesses
리턴 string

$roles 보호되어 있는 프로퍼티

Roles table
protected string $roles
리턴 string

$rolesInherits 보호되어 있는 프로퍼티

Roles Inherits table
protected string $rolesInherits
리턴 string