Properties

Properties existing in the Solar_View class.

Public

None.

Protected

$_Solar_View

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

$_escape

(array) Parameters for escaping.

$_helper

(array) Instantiated helper objects.

$_helper_class

(Solar_Class_Stack) Class stack for helpers.

$_partial_file

(string) The name of the current partial file.

$_partial_vars

(array) Variables to be extracted within a partial.

$_template_file

(string) The name of the current template file.

$_template_path

(Solar_Path_Stack) Path stack for templates.

Private

None.



Local