Searched refs:variableName (Results 1 – 3 of 3) sorted by relevance
206 * @param string $variableName name of variable or a callable on current context210 public function with($variableName) argument212 $value = $this->get($variableName);223 * @param string $variableName variavle name to get from current context229 public function get($variableName, $strict = false) argument232 $variableName = trim($variableName);235 if ($this->enableDataVariables && substr($variableName, 0, 1) == '@') {236 return $this->getDataVariable($variableName, $strict);240 while (substr($variableName, 0, 3) == '../') {241 $variableName = trim(substr($variableName, 3));[all …]
145 $variableName = strtolower($text);146 switch ($variableName) {152 $variableName = DatabasePageRow::IS_INDEX_COLUMN;162 $variableName = "date({$variableName})";166 $this->actualPredicateColumn = $variableName;168 $variableName = "p." . $variableName;170 if ($variableName === self::DEPTH) {171 $variableName = "level";173 $this->physicalSql .= "{$variableName} ";176 $variableName = strtolower($text);[all …]
107 $variableName = $data["name"];108 if (!(in_array($variableName, self::getQualityMetas()))) {119 … self::DESC => "The variable ($variableName) has the new value ($newValue) overriding ($oldValue)"