Public Member Functions | |
getConvertTable () | |
format ($string) | |
Protected Attributes | |
$_convertTable |
Definition at line 35 of file Url.php.
format | ( | $ | string | ) |
Definition at line 55 of file Url.php.
00056 { 00057 return strtr($string, $this->getConvertTable()); 00058 }
getConvertTable | ( | ) |
Definition at line 44 of file Url.php.
00045 { 00046 if (is_null($this->_convertTable)) { 00047 $convertNode = Mage::getConfig()->getNode('default/url/convert'); 00048 foreach ($convertNode->children() as $node) { 00049 $this->_convertTable[strval($node->from)] = strval($node->to); 00050 } 00051 } 00052 return $this->_convertTable; 00053 }