Home
last modified time | relevance | path

Searched full:env (Results 1 – 25 of 54) sorted by relevance

123

/template/twigstarter/vendor/twig/twig/src/NodeVisitor/
DEscaperNodeVisitor.php47 protected function doEnterNode(Node $node, Environment $env) argument
50 …if ($env->hasExtension(EscaperExtension::class) && $defaultStrategy = $env->getExtension(EscaperEx…
58 …e->getAttribute('name')]) ? $this->blocks[$node->getAttribute('name')] : $this->needEscaping($env);
66 protected function doLeaveNode(Node $node, Environment $env) argument
73 return $this->preEscapeFilterNode($node, $env);
74 } elseif ($node instanceof PrintNode && false !== $type = $this->needEscaping($env)) {
76 …ion instanceof ConditionalExpression && $this->shouldUnwrapConditional($expression, $env, $type)) {
77 …return new DoNode($this->unwrapConditional($expression, $env, $type), $expression->getTemplateLine…
80 return $this->escapePrintNode($node, $env, $type);
86 $this->blocks[$node->getAttribute('name')] = $this->needEscaping($env);
[all …]
DAbstractNodeVisitor.php26 final public function enterNode(Node $node, Environment $env) argument
28 return $this->doEnterNode($node, $env);
31 final public function leaveNode(Node $node, Environment $env) argument
33 return $this->doLeaveNode($node, $env);
41 abstract protected function doEnterNode(Node $node, Environment $env); argument
48 abstract protected function doLeaveNode(Node $node, Environment $env); argument
DOptimizerNodeVisitor.php63 protected function doEnterNode(Node $node, Environment $env) argument
66 $this->enterOptimizeFor($node, $env);
72 protected function doLeaveNode(Node $node, Environment $env) argument
75 $this->leaveOptimizeFor($node, $env);
79 $node = $this->optimizeRawFilter($node, $env);
82 $node = $this->optimizePrintNode($node, $env);
94 private function optimizePrintNode(Node $node, Environment $env): Node argument
116 private function optimizeRawFilter(Node $node, Environment $env): Node argument
128 private function enterOptimizeFor(Node $node, Environment $env) argument
192 private function leaveOptimizeFor(Node $node, Environment $env) argument
DSafeAnalysisNodeVisitor.php74 protected function doEnterNode(Node $node, Environment $env) argument
79 protected function doLeaveNode(Node $node, Environment $env) argument
98 if (false !== $filter = $env->getFilter($name)) {
111 $function = $env->getFunction($name);
DNodeVisitorInterface.php29 public function enterNode(Node $node, Environment $env); argument
36 public function leaveNode(Node $node, Environment $env); argument
/template/strap/.travis/
H A D.travis.yml11 # https://docs.travis-ci.com/user/build-matrix/#excluding-jobs-with-env-value
19 env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previous)
23 env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previous)
27 env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previous)
30 # env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previo…
33 # env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previo…
38 # - set | grep TRAVIS # env variable
/template/twigstarter/vendor/twig/twig/src/
DNodeTraverser.php26 private $env; variable in Twig\\NodeTraverser
32 public function __construct(Environment $env, array $visitors = []) argument
34 $this->env = $env;
65 $node = $visitor->enterNode($node, $this->env);
81 return $visitor->leaveNode($node, $this->env);
DTemplateWrapper.php21 private $env; variable in Twig\\TemplateWrapper
30 public function __construct(Environment $env, Template $template) argument
32 $this->env = $env;
93 $context = $this->env->mergeGlobals($context);
95 if ($this->env->isDebug()) {
121 $this->template->displayBlock($name, $this->env->mergeGlobals($context));
DTemplate.php38 protected $env; variable in Twig\\Template
44 public function __construct(Environment $env) argument
46 $this->env = $env;
47 $this->extensions = $env->getExtensions();
224 if ($this->env->isDebug()) {
249 if ($this->env->isDebug()) {
317 return $this->env->resolveTemplate($template);
330 return $this->env->loadClass($class, $template, $index);
333 return $this->env->loadTemplate($template, $index);
378 …$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $bl…
[all …]
DParser.php46 private $env; variable in Twig\\Parser
52 public function __construct(Environment $env) argument
54 $this->env = $env;
65 …unset($vars['stack'], $vars['env'], $vars['handlers'], $vars['visitors'], $vars['expressionParser'…
71 foreach ($this->env->getTokenParsers() as $handler) {
80 $this->visitors = $this->env->getNodeVisitors();
84 $this->expressionParser = new ExpressionParser($this, $this->env);
116 $traverser = new NodeTraverser($this->env, $this->visitors);
175 … $e->addSuggestions($token->getValue(), array_keys($this->env->getTags()));
DCompiler.php27 private $env; variable in Twig\\Compiler
33 public function __construct(Environment $env) argument
35 $this->env = $env;
45 return $this->env;
/template/strap/vendor/symfony/process/
H A DPhpProcess.php31 …* @param array|null $env The environment variables or null to use the same environment as the…
35 …public function __construct(string $script, ?string $cwd = null, ?array $env = null, int $timeout … argument
50 parent::__construct($php, $cwd, $env, $script, $timeout);
56 …public static function fromShellCommandline(string $command, ?string $cwd = null, ?array $env = nu… argument
64 public function start(?callable $callback = null, array $env = []) argument
70 parent::start($callback, $env);
H A DProcess.php58 private $env = []; variable in Symfony\\Component\\Process\\Process
138 …* @param array|null $env The environment variables or null to use the same environment as …
144 …public function __construct(array $command, ?string $cwd = null, ?array $env = null, $input = null… argument
160 if (null !== $env) {
161 $this->setEnv($env);
185 …* @param array|null $env The environment variables or null to use the same environment as …
193 …public static function fromShellCommandline(string $command, ?string $cwd = null, ?array $env = nu… argument
195 $process = new static([], $cwd, $env, $input, $timeout);
251 public function run(?callable $callback = null, array $env = []): int argument
253 $this->start($callback, $env);
[all …]
H A DCHANGELOG.md27 * deprecated `Process::inheritEnvironmentVariables()`: env variables are always inherited.
43 * made `PhpExecutableFinder` look for the `PHP_BINARY` env var when searching the php binary
50 * added a second `array $env = []` argument to the `start()`, `run()`,
52 * added a second `array $env = []` argument to the `start()` method of the
73 * added `$env` argument to `Process::start()`, `run()`, `mustRun()` and `restart()` methods
/template/twigstarter/vendor/twig/twig/src/Extension/
DCoreExtension.php384 function twig_random(Environment $env, $values = null, $max = null) argument
412 $charset = $env->getCharset();
453 function twig_date_format_filter(Environment $env, $date, $format = null, $timezone = null) argument
456 $formats = $env->getExtension(CoreExtension::class)->getDateFormat();
464 return twig_date_converter($env, $date, $timezone)->format($format);
477 function twig_date_modify_filter(Environment $env, $date, $modifier) argument
479 $date = twig_date_converter($env, $date, false);
509 function twig_date_converter(Environment $env, $date = null, $timezone = null) argument
514 $timezone = $env->getExtension(CoreExtension::class)->getTimezone();
539 …return new \DateTime($date, false !== $timezone ? $timezone : $env->getExtension(CoreExtension::cl…
[all …]
DStringLoaderExtension.php42 function twig_template_from_string(Environment $env, $template, string $name = null) argument
44 return $env->createTemplate((string) $template, $name);
DDebugExtension.php43 function twig_var_dump(Environment $env, $context, ...$vars) argument
45 if (!$env->isDebug()) {
DEscaperExtension.php171 function twig_escape_filter(Environment $env, $string, $strategy = 'html', $charset = null, $autoes… argument
181 $ext = $env->getExtension(EscaperExtension::class);
209 $charset = $env->getCharset();
396 $legacyEscapers = $env->getExtension(CoreExtension::class)->getEscapers(false);
398 return $legacyEscapers[$strategy]($env, $string, $charset);
401 $escapers = $env->getExtension(EscaperExtension::class)->getEscapers();
403 return $escapers[$strategy]($env, $string, $charset);
/template/strap/.github/workflows/
H A Dscratch-env.yml7 ## Error: .github/workflows/example-env-github.yml (Line: 53, Col: 26): A mapping was not expected
37 name: Env printing with the matrix version ${{ matrix.version }} # The name of the job
57 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#env
58 # https://docs.github.com/en/actions/learn-github-actions/contexts#env-context
60 env:
71 … echo "DEPENDENCY_VIA_ARRAY=${{ fromJson(env.LITERAL_ARRAY_ENV)[matrix.version] }}" >> $GITHUB_ENV
72 env:
76 - name: Echo env created
H A Dphp-test-reusable.yml43 env:
50 echo "PHPUNIT_VERSION=${{ fromJson(env.PHPUNIT_BY_PHP)[matrix.php] }}" >> $GITHUB_ENV
51 env:
61 tools: phpunit:${{ env.PHPUNIT_VERSION }}
86 path: ${{ env.COMBO_HOME }}
96 env:
/template/writr/.github/workflows/
Drelease.yml22 run: zip -r "${{ env.TAG_NAME }}.zip" .
43 env:
54 env:
58 asset_path: ./${{ env.TAG_NAME }}.zip
/template/strap/resources/firebug/
H A Dfirebug-lite-1.2-compressed.js12env:{"css":"http://getfirebug.com/releases/lite/1.2/firebug-lite.css","debug":true,"detectFirebug"… property
13 …ame(_file),_line));};}catch(e){}},overrideConsole:function(){with(firebug){env.override=true;try{i…
14 initConsole();}},restoreConsole:function(){with(firebug){if(internal.extConsole){env.override=false…
15 …document.getElementsByTagName('html')[0].attributes.getNamedItem('debug')){env.debug=document.getE…
16env.openInPopup=false;internal.targetWindow=window.opener;env.popupWidth=window.opener.firebug.env
17 settings.readCookie();if(internal.init||(env.detectFirebug&&window.console&&window.console.firebug)…
19 …e.set("rel","stylesheet").attribute.set("type","text/css").attribute.set("href",env.css).element);}
20 if(env.override){overrideConsole();}
23 if(lib.env.ie||lib.env.webkit){el.button.container.environment.addStyle({"paddingTop":"12px"});}
25 …nsole.cache[i];d.console.cmd[item.command].apply(window,item.arg);};if(lib.env.ie6){window.onscrol…
[all …]
H A Dfirebug-lite-1.2.js15 env:{ property
48 …if((!window.console || (window.console && !window.console.firebug)) || (firebug.env.override && !(…
62 env.override=true;
72 env.override=false;
87env.debug = document.getElementsByTagName('html')[0].attributes.getNamedItem('debug').nodeValue !=…
91 env.openInPopup = false;
93env.popupWidth = window.opener.firebug.env.popupWidth || window.opener.firebug.lib.util.GetViewpor…
94env.popupHeight = window.opener.firebug.env.popupHeight || window.opener.firebug.lib.util.GetViewp…
97 env.popupWidth = env.popupWidth || lib.util.GetViewport().width;
98 env.popupHeight = env.popupHeight || lib.util.GetViewport().height;
[all …]
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
DGetAttrExpression.php33 $env = $compiler->getEnvironment();
38 && (!$env->isStrictVariables() || $this->getAttribute('ignore_strict_check'))
60 $compiler->raw('twig_get_attribute($this->env, $this->source, ');
82 ->raw(', ')->repr($env->hasExtension(SandboxExtension::class))
/template/icke/
D.eslintrc.js35 if(process.env.NODE_ENV === 'production') {
44 'env': { property

123