Home
last modified time | relevance | path

Searched refs:environment (Results 1 – 25 of 270) sorted by relevance

1234567891011

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DFunctionTest.php34 $environment->addFunction(new TwigFunction('foo', 'foo', []));
43 $tests[] = [$node, 'foo()', $environment];
46 $tests[] = [$node, 'foo("bar", "foobar")', $environment];
49 $tests[] = [$node, 'bar($this->env)', $environment];
52 $tests[] = [$node, 'bar($this->env, "bar")', $environment];
55 $tests[] = [$node, 'foofoo($context)', $environment];
58 $tests[] = [$node, 'foofoo($context, "bar")', $environment];
61 $tests[] = [$node, 'foobar($this->env, $context)', $environment];
64 $tests[] = [$node, 'foobar($this->env, $context, "bar")', $environment];
75 $tests[] = [$node, 'twig_tests_function_barbar()', $environment];
[all …]
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/
H A DCommonmark.php16 # create environment
17 $environment = self::createDWEnvironment();
20 $parser = new MarkdownParser($environment);
22 $DWRenderer = new DWRenderer($environment);
78 $environment = new Environment($config);
79 $environment->addExtension(new CommonMarkToDokuWikiExtension());
80 $environment->addExtension(new FootnoteToDokuwikiExtension());
81 $environment->addExtension(new StrikethroughExtension());
82 $environment->addExtension(new TableExtension());
83 $environment
[all...]
H A DDWRenderer.php34 protected $environment;
37 * @param EnvironmentInterface $environment
39 public function __construct(EnvironmentInterface $environment)
41 $this->environment = $environment;
46 return $this->environment->getConfiguration()->get('renderer/block_separator');
51 return $this->environment->getConfiguration()->get('renderer/inner_separator');
62 return $this->environment->getConfiguration()->get('renderer/' . $option, $default);
86 $renderers = $this->environment->getRenderersForClass(\get_class($node));
33 protected $environment; global() variable in Dokuwiki\\Plugin\\Commonmark\\DWRenderer
38 __construct(EnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/
H A DMarkdownConverter.php27 protected EnvironmentInterface $environment;
35 public function __construct(EnvironmentInterface $environment)
37 $this->environment = $environment;
39 $this->markdownParser = new MarkdownParser($environment);
40 $this->htmlRenderer = new HtmlRenderer($environment);
45 return $this->environment;
19 protected $environment; global() variable in League\\CommonMark\\MarkdownConverter
21 __construct(EnvironmentInterface $environment) global() argument
H A DGithubFlavoredMarkdownConverter.php32 $environment = new Environment($config);
33 $environment->addExtension(new CommonMarkCoreExtension());
34 $environment->addExtension(new GithubFlavoredMarkdownExtension());
36 parent::__construct($environment);
41 \assert($this->environment instanceof Environment);
43 return $this->environment;
25 __construct(array $config = [], EnvironmentInterface $environment = null) global() argument
H A DCommonMarkConverter.php34 $environment = new Environment($config);
35 $environment->addExtension(new CommonMarkCoreExtension());
37 parent::__construct($environment);
42 \assert($this->environment instanceof Environment);
44 return $this->environment;
38 __construct(array $config = [], EnvironmentInterface $environment = null) global() argument
H A DHtmlRenderer.php
/plugin/database/
H A Ddatabase.php276 global $environment;
353 global $environment;
555 global $environment;
583 global $environment;
663 global $environment;
702 global $environment;
723 global $environment;
779 global $environment;
913 global $environment;
1006 global $environment;
[all …]
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/
H A DFootnoteExtension.php54 public function register(EnvironmentBuilderInterface $environment): void
56 $environment->addBlockStartParser(new FootnoteStartParser(), 51);
57 $environment->addInlineParser(new AnonymousFootnoteRefParser(), 35);
58 $environment->addInlineParser(new FootnoteRefParser(), 51);
60 $environment->addRenderer(FootnoteContainer::class, new FootnoteContainerRenderer());
61 $environment->addRenderer(Footnote::class, new FootnoteRenderer());
62 $environment->addRenderer(FootnoteRef::class, new FootnoteRefRenderer());
63 $environment->addRenderer(FootnoteBackref::class, new FootnoteBackrefRenderer());
65 $environment->addEventListener(DocumentParsedEvent::class, [new AnonymousFootnotesListener(), 'onDocumentParsed'], 40);
66 $environment
37 register(ConfigurableEnvironmentInterface $environment) global() argument
[all...]
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/
H A DFootnoteToDokuwikiExtension.php57 public function register(EnvironmentBuilderInterface $environment): void
59 $environment->addBlockStartParser(new FootnoteStartParser(), 51);
60 $environment->addInlineParser(new AnonymousFootnoteRefParser(), 35);
61 $environment->addInlineParser(new FootnoteRefParser(), 51);
63 $environment->addRenderer(FootnoteContainer::class, new FootnoteContainerRenderer());
64 $environment->addRenderer(Footnote::class, new FootnoteRenderer());
65 $environment->addRenderer(FootnoteBackref::class, new FootnoteBackrefRenderer());
66 $environment->addRenderer(FootnoteRef::class, new FootnoteRefRenderer());
68 $environment->addEventListener(DocumentParsedEvent::class, [new AnonymousFootnotesListener(), 'onDocumentParsed']);
69 $environment
40 register(ConfigurableEnvironmentInterface $environment) global() argument
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Extension/ExternalLink/
H A DExternalLinkProcessor.php26 private $environment; global() variable in League\\CommonMark\\Extension\\ExternalLink\\ExternalLinkProcessor
28 __construct(EnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/
H A DGithubFlavoredMarkdownExtension.php25 public function register(EnvironmentBuilderInterface $environment): void
27 $environment->addExtension(new AutolinkExtension());
28 $environment->addExtension(new DisallowedRawHtmlExtension());
29 $environment->addExtension(new StrikethroughExtension());
30 $environment->addExtension(new TableExtension());
31 $environment->addExtension(new TaskListExtension());
23 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/
H A DControl.php25 public $environment; variable in Google\\Service\\ServiceManagement\\Control
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/
H A DControl.php25 public $environment; variable in Google\\Service\\ServiceNetworking\\Control
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/
H A DControl.php25 public $environment; variable in Google\\Service\\ServiceUsage\\Control
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceConsumerManagement/
H A DControl.php25 public $environment; variable in Google\\Service\\ServiceConsumerManagement\\Control
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3RunTestCaseRequest.php25 public $environment; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3RunTestCaseRequest
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
H A DGoogleCloudDialogflowCxV3BatchRunTestCasesRequest.php26 public $environment; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3BatchRunTestCasesRequest
35 public function setEnvironment($environment) argument
37 $this->environment = $environment;
44 return $this->environment;
H A DGoogleCloudDialogflowCxV3ExportAgentRequest.php33 public $environment; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3ExportAgentRequest
66 public function setEnvironment($environment) argument
68 $this->environment = $environment;
75 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DisplayVideo/
H A DEnvironmentTargetingOptionDetails.php25 public $environment; variable in Google\\Service\\DisplayVideo\\EnvironmentTargetingOptionDetails
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
H A DEnvironmentAssignedTargetingOptionDetails.php25 public $environment; variable in Google\\Service\\DisplayVideo\\EnvironmentAssignedTargetingOptionDetails
34 public function setEnvironment($environment) argument
36 $this->environment = $environment;
43 return $this->environment;
/plugin/findologicxmlexport/vendor/twig/twig/src/Test/
H A DNodeTestCase.php27 public function testCompile($node, $source, $environment = null, $isPattern = false) argument
29 $this->assertNodeCompilation($source, $node, $environment, $isPattern);
32 …public function assertNodeCompilation($source, Node $node, Environment $environment = null, $isPat… argument
34 $compiler = $this->getCompiler($environment);
44 protected function getCompiler(Environment $environment = null) argument
46 return new Compiler(null === $environment ? $this->getEnvironment() : $environment);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1InstanceAttachment.php29 public $environment; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1InstanceAttachment
52 public function setEnvironment($environment) argument
54 $this->environment = $environment;
61 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/
H A DCompleteness.php29 public $environment; variable in Google\\Service\\OnDemandScanning\\Completeness
52 public function setEnvironment($environment) argument
54 $this->environment = $environment;
61 return $this->environment;
H A DSlsaCompleteness.php29 public $environment; variable in Google\\Service\\OnDemandScanning\\SlsaCompleteness
52 public function setEnvironment($environment) argument
54 $this->environment = $environment;
61 return $this->environment;

1234567891011