Public Member Functions | |
__construct () | |
getEncryptionKey () |
Definition at line 32 of file End.php.
__construct | ( | ) |
Constructor
By default is looking for first argument as array and assignes it as object attributes This behaviour may change in child classes
Reimplemented from Varien_Object.
Definition at line 34 of file End.php.
00035 { 00036 parent::__construct(); 00037 $this->setTemplate('install/end.phtml'); 00038 }
getEncryptionKey | ( | ) |
Definition at line 40 of file End.php.
00041 { 00042 $key = $this->getData('encryption_key'); 00043 if (is_null($key)) { 00044 $key = (string) Mage::getConfig()->getNode('global/crypt/key'); 00045 $this->setData('encryption_key', $key); 00046 } 00047 return $key; 00048 }