Properties

Properties existing in the Solar_Controller_Front class.

Public

None.

Protected

$_Solar_Controller_Front

(array) Default configuration values.

$_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',
);

$_default

(array) The default page name when none is specified.

$_disable

(array) A list of page-controller names that should be disallowed; will be treated as actions on the default controller instead.

$_explain

(array) An array of explanations of the front-controller processing track.

$_rewrite

(Solar_Uri_Rewrite) The registered Solar_Uri_Rewrite object.

$_routing

(array) Explicit page-name to controller class mappings.

$_routing_key

(array) The page-name key matched to the routing map, if any.

$_stack

(Solar_Class_Stack) Stack of page-controller class prefixes.

Private

None.



Local