/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/ |
H A D | FunctionTest.php | 34 $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 D | Commonmark.php | 15 $environment = self::createDWEnvironment(); 18 $parser = new DocParser($environment); 20 $DWRenderer = new DWRenderer($environment); 27 $environment = new Environment(); 28 $environment->addExtension(new CommonMarkToDokuWikiExtension()); 29 $environment->addExtension(new FootnoteToDokuwikiExtension()); 30 $environment->addExtension(new StrikethroughExtension()); 31 $environment->addExtension(new TableExtension()); 33 $environment->mergeConfig([ 37 return $environment;
|
H A D | DWRenderer.php | 33 protected $environment; variable in Dokuwiki\\Plugin\\Commonmark\\DWRenderer 36 * @param EnvironmentInterface $environment 38 public function __construct(EnvironmentInterface $environment) argument 40 $this->environment = $environment; 51 return $this->environment->getConfig('renderer/' . $option, $default); 63 $renderers = $this->environment->getInlineRenderersForClass(\get_class($inline)); 100 $renderers = $this->environment->getBlockRenderersForClass(\get_class($block));
|
/plugin/commonmark/vendor/league/commonmark/src/ |
H A D | MarkdownConverter.php | 19 protected $environment; variable in League\\CommonMark\\MarkdownConverter 21 public function __construct(EnvironmentInterface $environment) argument 23 $this->environment = $environment; 25 parent::__construct(new DocParser($environment), new HtmlRenderer($environment)); 30 return $this->environment;
|
H A D | GithubFlavoredMarkdownConverter.php | 23 * @param EnvironmentInterface|null $environment 25 public function __construct(array $config = [], EnvironmentInterface $environment = null) argument 27 if ($environment === null) { 28 $environment = Environment::createGFMEnvironment(); 33 if ($environment instanceof ConfigurableEnvironmentInterface) { 34 $environment->mergeConfig($config); 37 MarkdownConverter::__construct($environment);
|
H A D | CommonMarkConverter.php | 36 * @param EnvironmentInterface|null $environment 38 public function __construct(array $config = [], EnvironmentInterface $environment = null) argument 40 if ($environment === null) { 41 $environment = Environment::createCommonMarkEnvironment(); 46 if ($environment instanceof ConfigurableEnvironmentInterface) { 47 $environment->mergeConfig($config); 50 parent::__construct($environment);
|
H A D | HtmlRenderer.php | 30 protected $environment; variable in League\\CommonMark\\HtmlRenderer 33 * @param EnvironmentInterface $environment 35 public function __construct(EnvironmentInterface $environment) argument 37 $this->environment = $environment; 48 return $this->environment->getConfig('renderer/' . $option, $default); 60 $renderers = $this->environment->getInlineRenderersForClass(\get_class($inline)); 97 $renderers = $this->environment->getBlockRenderersForClass(\get_class($block));
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/ |
H A D | FootnoteExtension.php | 37 public function register(ConfigurableEnvironmentInterface $environment) argument 39 $environment->addBlockParser(new FootnoteParser(), 51); 40 $environment->addInlineParser(new AnonymousFootnoteRefParser(), 35); 41 $environment->addInlineParser(new FootnoteRefParser(), 51); 43 $environment->addBlockRenderer(FootnoteContainer::class, new FootnoteContainerRenderer()); 44 $environment->addBlockRenderer(Footnote::class, new FootnoteRenderer()); 46 $environment->addInlineRenderer(FootnoteRef::class, new FootnoteRefRenderer()); 47 $environment->addInlineRenderer(FootnoteBackref::class, new FootnoteBackrefRenderer()); 49 …$environment->addEventListener(DocumentParsedEvent::class, [new AnonymousFootnotesListener(), 'onD… 50 …$environment->addEventListener(DocumentParsedEvent::class, [new NumberFootnotesListener(), 'onDocu… [all …]
|
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/ |
H A D | FootnoteToDokuwikiExtension.php | 40 public function register(ConfigurableEnvironmentInterface $environment) argument 42 $environment->addBlockParser(new FootnoteParser(), 51); 43 $environment->addInlineParser(new AnonymousFootnoteRefParser(), 35); 44 $environment->addInlineParser(new FootnoteRefParser(), 51); 46 $environment->addBlockRenderer(FootnoteContainer::class, new FootnoteContainerRenderer()); 47 $environment->addBlockRenderer(Footnote::class, new FootnoteRenderer()); 48 $environment->addInlineRenderer(FootnoteBackref::class, new FootnoteBackrefRenderer()); 49 $environment->addInlineRenderer(FootnoteRef::class, new FootnoteRefRenderer()); 51 …$environment->addEventListener(DocumentParsedEvent::class, [new AnonymousFootnotesListener(), 'onD… 52 …$environment->addEventListener(DocumentParsedEvent::class, [new NumberFootnotesListener(), 'onDocu… [all …]
|
/plugin/database/ |
H A D | database.php | 276 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/ExternalLink/ |
H A D | ExternalLinkProcessor.php | 26 private $environment; variable in League\\CommonMark\\Extension\\ExternalLink\\ExternalLinkProcessor 28 public function __construct(EnvironmentInterface $environment) argument 30 $this->environment = $environment; 40 $internalHosts = $this->environment->getConfig('external_link/internal_hosts', []); 41 $openInNewWindow = $this->environment->getConfig('external_link/open_in_new_window', false); 42 $classes = $this->environment->getConfig('external_link/html_class', ''); 88 … 'nofollow' => $this->environment->getConfig('external_link/nofollow', self::APPLY_NONE), 89 … 'noopener' => $this->environment->getConfig('external_link/noopener', self::APPLY_EXTERNAL), 90 … 'noreferrer' => $this->environment->getConfig('external_link/noreferrer', self::APPLY_EXTERNAL),
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/ |
H A D | Control.php | 25 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 D | Control.php | 25 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 D | Control.php | 25 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 D | Control.php | 25 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 D | GoogleCloudDialogflowCxV3RunTestCaseRequest.php | 25 public $environment; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3RunTestCaseRequest 30 public function setEnvironment($environment) argument 32 $this->environment = $environment; 39 return $this->environment;
|
H A D | GoogleCloudDialogflowCxV3BatchRunTestCasesRequest.php | 26 public $environment; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3BatchRunTestCasesRequest 35 public function setEnvironment($environment) argument 37 $this->environment = $environment; 44 return $this->environment;
|
H A D | GoogleCloudDialogflowCxV3ExportAgentRequest.php | 33 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 D | EnvironmentTargetingOptionDetails.php | 25 public $environment; variable in Google\\Service\\DisplayVideo\\EnvironmentTargetingOptionDetails 30 public function setEnvironment($environment) argument 32 $this->environment = $environment; 39 return $this->environment;
|
H A D | EnvironmentAssignedTargetingOptionDetails.php | 25 public $environment; variable in Google\\Service\\DisplayVideo\\EnvironmentAssignedTargetingOptionDetails 34 public function setEnvironment($environment) argument 36 $this->environment = $environment; 43 return $this->environment;
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/ |
H A D | GithubFlavoredMarkdownExtension.php | 23 public function register(ConfigurableEnvironmentInterface $environment) argument 25 $environment->addExtension(new AutolinkExtension()); 26 $environment->addExtension(new DisallowedRawHtmlExtension()); 27 $environment->addExtension(new StrikethroughExtension()); 28 $environment->addExtension(new TableExtension()); 29 $environment->addExtension(new TaskListExtension());
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Test/ |
H A D | NodeTestCase.php | 27 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 D | GoogleCloudApigeeV1InstanceAttachment.php | 29 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 D | Completeness.php | 29 public $environment; variable in Google\\Service\\OnDemandScanning\\Completeness 52 public function setEnvironment($environment) argument 54 $this->environment = $environment; 61 return $this->environment;
|
H A D | SlsaCompleteness.php | 29 public $environment; variable in Google\\Service\\OnDemandScanning\\SlsaCompleteness 52 public function setEnvironment($environment) argument 54 $this->environment = $environment; 61 return $this->environment;
|