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_Variable extends Varien_Filter_Template_Tokenizer_Abstract
00036 {
00037
00038
00039
00040
00041
00042
00043 public function tokenize()
00044 {
00045 $actions = array();
00046 $parameterName = '';
00047 $variableSet = false;
00048 do {
00049 if($this->isWhiteSpace()) {
00050
00051 continue;
00052 } else if($this->char()!='.' && $this->char()!='(') {
00053
00054 $parameterName .= $this->char();
00055 } else if($this->char()=='(') {
00056
00057 $methodArgs = $this->getMethodArgs();
00058 $actions[] = array('type'=>'method',
00059 'name'=>$parameterName,
00060 'args'=>$methodArgs);
00061 $parameterName = '';
00062 } else if($parameterName!='') {
00063
00064 if($variableSet) {
00065 $actions[] = array('type'=>'property',
00066 'name'=>$parameterName);
00067 } else {
00068 $variableSet = true;
00069 $actions[] = array('type'=>'variable',
00070 'name'=>$parameterName);
00071 }
00072 $parameterName = '';
00073 }
00074 } while ($this->next());
00075
00076 if($parameterName != '' ) {
00077 if($variableSet) {
00078 $actions[] = array('type'=>'property',
00079 'name'=>$parameterName);
00080 } else {
00081 $actions[] = array('type'=>'variable',
00082 'name'=>$parameterName);
00083 }
00084 }
00085
00086 return $actions;
00087 }
00088
00089
00090
00091
00092
00093
00094 public function getString() {
00095
00096 $value = '';
00097 if($this->isWhiteSpace()) {
00098 return $value;
00099 }
00100 $qouteStart = $this->isQuote();
00101
00102 if($qouteStart) {
00103 $breakSymbol = $this->char();
00104 } else {
00105 $breakSymbol = false;
00106 $value .= $this->char();
00107 }
00108
00109 while ($this->next()) {
00110 if (!$breakSymbol && ($this->isWhiteSpace() || $this->char() == ',' || $this->char() == ')') ) {
00111 $this->prev();
00112 break;
00113 } else if ($breakSymbol && $this->char() == $breakSymbol) {
00114 break;
00115 } else if ($this->char() == '\\') {
00116 $this->next();
00117 $value .= $this->char();
00118 } else {
00119 $value .= $this->char();
00120
00121 }
00122 }
00123
00124 return $value;
00125 }
00126
00127
00128
00129
00130
00131
00132 public function isNumeric() {
00133 return $this->char() >= '0' && $this->char() <= '9';
00134 }
00135
00136
00137
00138
00139
00140
00141 public function isQuote() {
00142 return $this->char() == '"' || $this->char() == "'";
00143 }
00144
00145
00146
00147
00148
00149
00150 public function getMethodArgs() {
00151 $value = array();
00152 $numberStr = '';
00153
00154 while($this->next() && $this->char() != ')') {
00155 if($this->isWhiteSpace() || $this->char() == ',') {
00156 continue;
00157 } else if($this->isNumeric()) {
00158 $value[] = $this->getNumber();
00159 } else {
00160 $value[] = $this->getString();
00161 }
00162 }
00163
00164 return $value;
00165 }
00166
00167
00168
00169
00170
00171
00172 public function getNumber() {
00173 $value = $this->char();
00174 while( ($this->isNumeric() || $this->char()=='.') && $this->next() ) {
00175 $value.= $this->char();
00176 }
00177
00178 if(!$this->isNumeric()) {
00179 $this->prev();
00180 }
00181
00182 return floatval($value);
00183 }
00184
00185 }