Properties
Properties existing in the Solar_View_Helper_Time
class.
Public
None.
Protected
$_Solar_View_Helper_Time
(array) Default configuration values.
$_Solar_View_Helper_Timestamp
(array) Default configuration values.
Inherited from Solar_View_Helper_Timestamp.
$_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',
);
$_tz_offset
(int) The offset in seconds between the origin and output timezones.
Inherited from Solar_View_Helper_Timestamp.
This value will be added to the time (in seconds) before formatting for output.
$_tz_origin
(string) The timezone that date-time strings originate from.
Inherited from Solar_View_Helper_Timestamp.
$_tz_output
(string) The timezone that date-time strings should be converted to before output.
Inherited from Solar_View_Helper_Timestamp.
Private
None.