Properties
Properties existing in the Solar_Access_Adapter_File
class.
Public
Protected
$_Solar_Access_Adapter_File
(array) Default configuration values.
$_auth
(Solar_Auth_Adapter) A Solar_Auth object representing the current user.
Inherited from Solar_Access_Adapter.
$_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.
Inherited from Solar_Access_Adapter.
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.
Inherited from Solar_Access_Adapter.
Private
None.