Home
last modified time | relevance | path

Searched refs:variables (Results 1 – 25 of 182) sorted by relevance

12345678

/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A DImageObject.cfc106 <cfset variables.revertimg = variables.img>
114 <cfset variables.revertimg = variables.img>
128 <cfset variables.revertimg = variables.img>
136 <cfset variables.revertimg = variables.img>
145 <cfset variables.revertimg = variables.img>
157 <cfset variables.revertimg = variables.img>
168 <cfset variables.revertimg = variables.img>
177 <cfset variables.revertimg = variables.img>
202 <cfset variables.revertimg = variables.img>
210 <cfset variables.revertimg = variables.img>
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Exclusion/
H A DExpressionLanguageExclusionStrategy.php43 $variables = [
48 $variables['object'] = $navigatorContext->getObject();
50 $variables['object'] = null;
54 return $this->expressionEvaluator->evaluateParsed($property->excludeIf, $variables);
57 return $this->expressionEvaluator->evaluate($property->excludeIf, $variables);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DScssphpFilter.php34 private $variables = array(); variable in Assetic\\Filter\\ScssphpFilter
64 public function setVariables(array $variables) argument
66 $this->variables = $variables;
71 $this->variables[] = $variable;
113 if (!empty($this->variables)) {
114 $sc->setVariables($this->variables);
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DIncludeTokenParser.php31 list($variables, $only, $ignoreMissing) = $this->parseArguments();
33 …return new IncludeNode($expr, $variables, $only, $ignoreMissing, $token->getLine(), $this->getTag(…
47 $variables = null;
49 $variables = $this->parser->getExpressionParser()->parseExpression();
59 return [$variables, $only, $ignoreMissing];
H A DWithTokenParser.php30 $variables = null;
33 $variables = $this->parser->getExpressionParser()->parseExpression();
43 return new WithNode($body, $variables, $only, $token->getLine(), $this->getTag());
H A DEmbedTokenParser.php32 list($variables, $only, $ignoreMissing) = $this->parseArguments();
60 …return new EmbedNode($module->getTemplateName(), $module->getAttribute('index'), $variables, $only…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1DebugMask.php58 public $variables; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1DebugMask
175 public function setVariables($variables) argument
177 $this->variables = $variables;
184 return $this->variables;
/plugin/syntaxhighlighter3/sxh3/build/
H A Dtasks.coffee60 variables = loadFilesIntoVariables includesDir
61 variables.version = JSON.parse(readFile path.resolve baseDir, '../package.json').version
62 variables.date = new Date().toUTCString()
63 variables.about = variables.about.replace(/\r|\n|\t/g, "").replace(/"/g, "\\\"")
93 variables.about = ejs.render variables.about, variables
96 coreSource = ejs.render readFile(corePath), variables
117 header = ejs.render variables.header, variables
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DUriTemplate.php15 private $variables; variable in GuzzleHttp\\UriTemplate
38 public function expand($template, array $variables) argument
45 $this->variables = $variables;
110 if (!isset($this->variables[$value['value']])) {
114 $variable = $this->variables[$value['value']];
H A Dfunctions.php13 * @param array $variables Template variables
17 function uri_template($template, array $variables) argument
21 return \uri_template($template, $variables);
30 return $uriTemplate->expand($template, $variables);
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dinclude.rst14 Included templates have access to the variables of the active context.
20 additional variables:
24 …{# template.html will have access to the variables from the current context and the additional one…
37 {# no variables will be accessible #}
81 * ``variables``: The variables to pass to the template
82 * ``with_context``: Whether to pass the current context variables or not
H A Ddump.rst9 introspecting its variables:
46 You can debug several variables by passing them as additional arguments:
52 If you don't pass any value, all variables from the current context are
/plugin/codemirror/dist/modes/
H A Dsoy.min.js1variables=a.context.scope}a.context=a.context.previousContext}function l(a,b,c){return i(a,b)?"var…
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DWithNode.php23 …public function __construct(Node $body, Node $variables = null, $only = false, $lineno, $tag = nul… argument
26 if (null !== $variables) {
27 $nodes['variables'] = $variables;
H A DIncludeNode.php25 …public function __construct(AbstractExpression $expr, AbstractExpression $variables = null, $only … argument
28 if (null !== $variables) {
29 $nodes['variables'] = $variables;
H A DEmbedNode.php26 …public function __construct($name, $index, AbstractExpression $variables = null, $only = false, $i… argument
28 …parent::__construct(new ConstantExpression('not_used', $lineno), $variables, $only, $ignoreMissing…
/plugin/const/
H A Dclass.evalmath.php56 public $variables = array(); variable in EvalMath
149 $this->variables['pi'] = pi();
150 $this->variables['e'] = exp( 1 );
190 $this->variables[ $matches[1] ] = $tmp;
216 if ( array_key_exists( $token, $this->variables ) ) {
217 $stack[ $i ] = $this->variables[ $token ];
239 public function variables() { function in EvalMath
240 return $this->variables;
627 $stack->push( $this->variables[ $token ] );
628 } elseif ( array_key_exists( $token, $variables ) ) {
[all …]
/plugin/mytemplate/
H A Daction.php82 public $variables = array(); variable in action_plugin_mytemplate
147 fill_map($variableblock[1], $this->variables);
208 if ($this->variables[$var[1]]) {
209 $formula = str_replace($var[0], $this->variables[$var[1]], $formula);
324 $value = str_replace($var[0], $this->variables[$var[0]], $value);
332 $value = $this->do_list($this->variables[$param1], trim($param2, '[]'), $param3);
348 $this->variables[$assignment_target] = $value;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/
H A Dignore_missing.test6 {{ include("foo.twig", ignore_missing = true, variables = {}) }}
7 {{ include("foo.twig", ignore_missing = true, variables = {}, with_context = true) }}
/plugin/jplayer/vendor/symfony/process/
H A DProcessBuilder.php156 * @param array $variables The variables
160 public function addEnvironmentVariables(array $variables) argument
162 $this->env = array_replace($this->env, $variables);
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Ddefined.rst14 {# and attributes on variables names #}
23 When using the ``defined`` test on an expression that uses variables in some
/plugin/findologicxmlexport/vendor/jms/serializer/src/Accessor/
H A DDefaultAccessorStrategy.php63 … $variables = ['object' => $object, 'context' => $context, 'property_metadata' => $metadata];
66 return $this->evaluator->evaluateParsed($metadata->expression, $variables);
68 return $this->evaluator->evaluate($metadata->expression, $variables);
/plugin/revealjs/css/theme/
H A DREADME.md15 Declares a set of custom variables that the template file (step 4) expects. Can be overridden in st…
18 This is where you override the default theme. Either by specifying variables (see [settings.scss](h…
21 … template theme file which will generate final CSS output based on the currently defined variables.
/plugin/bez/meta/
H A DTpl.php14 private $variables = array(); variable in dokuwiki\\plugin\\bez\\meta\\Tpl
82 $this->variables[$id] = $value;
87 $var = $this->variables;
/plugin/findologicxmlexport/
H A Dadmin.php95 $variables = [
107 $variablesForTemplate = array_merge($pagesWithoutTitle, $variables);

12345678