00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 class Varien_Filter_Template_Tokenizer_Parameter extends Varien_Filter_Template_Tokenizer_Abstract
00036 {
00037
00038
00039
00040
00041
00042
00043 public function tokenize()
00044 {
00045 $parameters = array();
00046 $parameterName = '';
00047 while($this->next()) {
00048 if($this->isWhiteSpace()) {
00049 continue;
00050 } else if($this->char()!='=') {
00051 $parameterName .= $this->char();
00052 } else {
00053 $parameters[$parameterName] = $this->getValue();
00054 $parameterName = '';
00055 }
00056
00057 }
00058 return $parameters;
00059 }
00060
00061
00062
00063
00064
00065
00066 public function getValue() {
00067 $this->next();
00068 $value = '';
00069 if($this->isWhiteSpace()) {
00070 return $value;
00071 }
00072 $quoteStart = $this->char() == "'" || $this->char() == '"';
00073
00074
00075 if($quoteStart) {
00076 $breakSymbol = $this->char();
00077 } else {
00078 $breakSymbol = false;
00079 $value .= $this->char();
00080 }
00081
00082 while ($this->next()) {
00083 if (!$breakSymbol && $this->isWhiteSpace()) {
00084 break;
00085 } else if ($breakSymbol && $this->char() == $breakSymbol) {
00086 break;
00087 } else if ($this->char() == '\\') {
00088 $this->next();
00089 $value .= $this->char();
00090 } else {
00091 $value .= $this->char();
00092 }
00093 }
00094
00095 return $value;
00096 }
00097
00098 }