Public Member Functions | |
setString ($string) | |
getString () | |
Protected Member Functions | |
_construct () |
Definition at line 34 of file String.php.
_construct | ( | ) | [protected] |
Enter description here...
Reimplemented from Varien_Object.
Definition at line 36 of file String.php.
00037 { 00038 $this->_init('core/translate_string'); 00039 }
getString | ( | ) |
Retrieve string
Definition at line 53 of file String.php.
00054 { 00055 //return strtolower($this->getData('string')); 00056 return $this->getData('string'); 00057 }
setString | ( | $ | string | ) |
Definition at line 41 of file String.php.
00042 { 00043 $this->setData('string', $string); 00044 //$this->setData('string', strtolower($string)); 00045 return $this; 00046 }