Properties

Properties existing in the Solar_Access_Adapter class.

Public

$list

(array) The access list for a handle and roles.

Protected

$_Solar_Access_Adapter

(array) Default configuration values.

$_auth

(Solar_Auth_Adapter) A Solar_Auth object representing the current user.

$_config

(array) Collection point for configuration values.

Inherited from Solar_Base.

Note that you do not define config defaults in $_config directly.

<?php
// DO NOT DO THIS
protected $_config = array(
    'foo' => 'bar',
    'baz' => 'dib',
);

Instead, define config defaults in a protected property named for the class, withan underscore prefix.

For exmple, a "Vendor_Class_Name" class would define the default config array in "$_Vendor_Class_Name". This convention lets child classes inherit parent config keys and values.

<?php
// DO THIS INSTEAD
protected $_Vendor_Class_Name = array(
    'foo' => 'bar',
    'baz' => 'dib',
);

$_owner_method

(array) Default configuration values.

An array of key-value pairs to map object class to a method in that class to determine if a user is the owner of that object. The key is the class name, the value is the method name within that class.

$_role

(Solar_Role_Adapter) A Solar_Role object representing the current user.

Private

None.



Local