Home
last modified time | relevance | path

Searched refs:variableName (Results 1 – 3 of 3) sorted by relevance

/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
H A DContext.php206 * @param string $variableName name of variable or a callable on current context
210 public function with($variableName) argument
212 $value = $this->get($variableName);
223 * @param string $variableName variavle name to get from current context
229 public function get($variableName, $strict = false) argument
232 $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 …]
/template/strap/ComboStrap/
H A DPageSqlTreeListener.php145 $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 …]
/template/strap/action/
H A Dqualitymutation.php107 $variableName = $data["name"];
108 if (!(in_array($variableName, self::getQualityMetas()))) {
119 … self::DESC => "The variable ($variableName) has the new value ($newValue) overriding ($oldValue)"