|
Previous Page |
Solar_View_Helper_TypekeyLink |
Next Page |
Properties
Public
None.
Protected
$_Solar_View_Helper_TypekeyLink
(array) User-defined configuration values.
Keys are ...
token- (string) The TypeKey site identifier token string. If empty, the helper will use the value from the Solar config file under the $config['Solar_Auth_Adapter_Typekey']['token'] key.
href- (string) The HREF of the TypeKey login service. Default is "https://www.typekey.com:443/t/typekey/login".
need_email- (bool) Whether or not to get the TypeKey user's email address. Default false.
$_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',
);
?>
$_view
(Solar_View) Reference to the parent Solar_View object.
Inherited from Solar_View_Helper.
Private
None.