Home
last modified time | relevance | path

Searched refs:dispatcher (Results 1 – 25 of 51) sorted by path

123

/plugin/advanced/lang/en/config/
H A Dstyleini.txt17 DokuWiki's CSS dispatcher is able to replace placeholders in the loaded stylesheets which are confi…
H A Duserscript.txt3 …>css|stylesheets]] all JavaScript files are delivered through a single dispatcher to minimize HTTP…
H A Duserstyle.txt5 All CSS files are fetched through a single dispatcher in [[xref>lib/exe/css.php]] which also handle…
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/
H A Dcomposer.lock475 "symfony/event-dispatcher": "^5.4 || ^6.0",
1349 "name": "psr/event-dispatcher",
1353 "url": "https://github.com/php-fig/event-dispatcher.git",
1358 "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
1393 "issues": "https://github.com/php-fig/event-dispatcher/issues",
1394 "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
2492 "symfony/event-dispatcher": "<5.4",
2503 "symfony/event-dispatcher": "^5.4|^6.0",
2510 "symfony/event-dispatcher": "",
2632 "name": "symfony/event-dispatcher",
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md230 - No longer requiring the Symfony EventDispatcher. A custom event dispatcher
/plugin/codemirror/dist/keymaps/
H A Dvim.min.js.map1 …tation\n * and instantiation\n * 5. Key handler (the main command dispatcher) implementation\…
/plugin/combo/vendor/php-webdriver/webdriver/lib/Support/Events/
H A DEventFiringWebDriver.php27 protected $dispatcher; variable in Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriver
31 * @param WebDriverDispatcher $dispatcher
33 public function __construct(WebDriver $driver, WebDriverDispatcher $dispatcher = null) argument
35 $this->dispatcher = $dispatcher ?: new WebDriverDispatcher();
36 if (!$this->dispatcher->getDefaultDriver()) {
37 $this->dispatcher->setDefaultDriver($this);
47 return $this->dispatcher;
392 if (!$this->dispatcher) {
396 $this->dispatcher
[all...]
H A DEventFiringWebDriverNavigation.php18 protected $dispatcher; variable in Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriverNavigation
22 * @param WebDriverDispatcher $dispatcher
24 public function __construct(WebDriverNavigationInterface $navigator, WebDriverDispatcher $dispatcher) argument
27 $this->dispatcher = $dispatcher;
35 return $this->dispatcher;
128 if (!$this->dispatcher) {
132 $this->dispatcher->dispatch($method, $arguments);
H A DEventFiringWebElement.php23 protected $dispatcher; variable in Facebook\\WebDriver\\Support\\Events\\EventFiringWebElement
27 * @param WebDriverDispatcher $dispatcher
29 public function __construct(WebDriverElement $element, WebDriverDispatcher $dispatcher) argument
32 $this->dispatcher = $dispatcher;
40 return $this->dispatcher;
101 $this->dispatcher->getDefaultDriver()
115 $this->dispatcher->getDefaultDriver()
132 $this->dispatcher->getDefaultDriver()
148 $this->dispatcher
[all...]
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG.md293 - **Added the ability to delegate event dispatching to PSR-14 compliant event dispatcher libraries**
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Dbundle.js.map1 … to render\nlet component = null\nlet componentParams = {}\n\n// Event dispatcher from Svelte\ncon…
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/tests/
H A DXmlSchemaDateHandlerDeserializationTest.php42 $dispatcher = new EventDispatcher();
47 ? $this->initJmsv2($naming, $handlerRegistry, $cons, $dispatcher)
48 : $this->initJmsv1($naming, $handlerRegistry, $cons, $dispatcher)
53 private function initJmsv2($naming, $handlerRegistry, $cons, $dispatcher) argument
58 …r\DeserializationGraphNavigator($metadataFactory, $handlerRegistry, $cons, $accessor, $dispatcher);
61 private function initJmsv1($naming, $handlerRegistry, $cons, $dispatcher) argument
65 return new GraphNavigator($metadataFactory, $handlerRegistry, $cons, $dispatcher);
H A DXmlSchemaDateHandlerSerializationTest.php41 $dispatcher = new EventDispatcher();
45 ? $this->initJmsv2($naming, $handlerRegistry, $cons, $dispatcher)
46 : $this->initJmsv1($naming, $handlerRegistry, $cons, $dispatcher)
51 private function initJmsv2($naming, $handlerRegistry, $cons, $dispatcher) argument
56 …hNavigator\SerializationGraphNavigator($metadataFactory, $handlerRegistry, $accessor, $dispatcher);
59 private function initJmsv1($naming, $handlerRegistry, $cons, $dispatcher) argument
63 return new GraphNavigator($metadataFactory, $handlerRegistry, $cons, $dispatcher);
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Devent_system.rst38 ->configureListeners(function(JMS\Serializer\EventDispatcher\EventDispatcher $dispatcher) {
39 $dispatcher->addListener('serializer.pre_serialize',
45 $dispatcher->addSubscriber(new MyEventSubscriber());
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/Subscriber/
H A DDoctrineProxySubscriber.php78 …vent, string $eventName, string $class, string $format, EventDispatcherInterface $dispatcher): void argument
94 $dispatcher->dispatch($eventName, $parentClassName, $format, $newEvent);
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/
H A DDeserializationGraphNavigator.php56 private $dispatcher; variable in JMS\\Serializer\\GraphNavigator\\DeserializationGraphNavigator
82 ?EventDispatcherInterface $dispatcher = null, argument
85 $this->dispatcher = $dispatcher ?: new EventDispatcher();
146 … if ($this->dispatcher->hasListeners('serializer.pre_deserialize', $type['name'], $this->format)) {
147 …$this->dispatcher->dispatch('serializer.pre_deserialize', $type['name'], $this->format, $event = n…
241 …if ($this->dispatcher->hasListeners('serializer.post_deserialize', $metadata->name, $this->format)…
242 …$this->dispatcher->dispatch('serializer.post_deserialize', $metadata->name, $this->format, new Obj…
H A DSerializationGraphNavigator.php58 private $dispatcher; variable in JMS\\Serializer\\GraphNavigator\\SerializationGraphNavigator
83 ?EventDispatcherInterface $dispatcher = null, argument
86 $this->dispatcher = $dispatcher ?: new EventDispatcher();
183 … if ($this->dispatcher->hasListeners('serializer.pre_serialize', $type['name'], $this->format)) {
184 …$this->dispatcher->dispatch('serializer.pre_serialize', $type['name'], $this->format, $event = new…
253 …if ($this->dispatcher->hasListeners('serializer.post_serialize', $metadata->name, $this->format)) {
254 …$this->dispatcher->dispatch('serializer.post_serialize', $metadata->name, $this->format, new Objec…
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/Factory/
H A DDeserializationGraphNavigatorFactory.php37 private $dispatcher; variable in JMS\\Serializer\\GraphNavigator\\Factory\\DeserializationGraphNavigatorFactory
48 ?EventDispatcherInterface $dispatcher = null, argument
55 $this->dispatcher = $dispatcher;
61 …is->handlerRegistry, $this->objectConstructor, $this->accessor, $this->dispatcher, $this->expressi…
H A DSerializationGraphNavigatorFactory.php34 private $dispatcher; variable in JMS\\Serializer\\GraphNavigator\\Factory\\SerializationGraphNavigatorFactory
44 ?EventDispatcherInterface $dispatcher = null, argument
50 $this->dispatcher = $dispatcher ?: new EventDispatcher();
56 …this->metadataFactory, $this->handlerRegistry, $this->accessor, $this->dispatcher, $this->expressi…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DFormErrorHandlerTest.php41 protected $dispatcher; variable in JMS\\Serializer\\Tests\\Handler\\FormErrorHandlerTest
54 $this->dispatcher = new EventDispatcher();
62 $this->dispatcher = null;
241 * @param EventDispatcherInterface $dispatcher
246 …protected function getBuilder($name = 'name', ?EventDispatcherInterface $dispatcher = null, $dataC… argument
248 return new FormBuilder($name, $dataClass, $dispatcher ?: $this->dispatcher, $this->factory);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DBaseSerializationTest.php124 protected $dispatcher; variable in JMS\\Serializer\\Tests\\Serializer\\BaseSerializationTest
428 $builder = SerializerBuilder::create($this->handlerRegistry, $this->dispatcher);
983 …$dispatcher = $this->getMockBuilder('Symfony\Component\EventDispatcher\EventDispatcherInterface')-…
985 $formConfigBuilder = new FormConfigBuilder('foo', null, $dispatcher);
993 $formConfigBuilder = new FormConfigBuilder('bar', null, $dispatcher);
1011 …$dispatcher = $this->getMockBuilder('Symfony\Component\EventDispatcher\EventDispatcherInterface')-…
1018 $formConfigBuilder = new FormConfigBuilder('foo', null, $dispatcher);
1656 $this->dispatcher = new EventDispatcher();
1657 $this->dispatcher->addSubscriber(new DoctrineProxySubscriber());
1659 $builder = SerializerBuilder::create($this->handlerRegistry, $this->dispatcher);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/
H A DEventDispatcherTest.php24 protected $dispatcher; variable in JMS\\Serializer\\Tests\\Serializer\\EventDispatcher\\EventDispatcherTest
31 $this->dispatcher->addListener('foo', static function () {
36 $this->dispatcher->addListener('bar', static function () {
39 $this->dispatcher->addListener('bar', static function () {
42 $this->dispatcher->addListener('bar', static function () {
48 $this->dispatcher->addListener('baz', static function () {
57 $this->dispatcher->addListener('foo', [$a, 'Foo']);
64 $this->dispatcher->addListener('pre', [$b, 'all']);
179 $this->dispatcher->addSubscriber($subscriber);
187 ], 'listeners', $this->dispatcher);
[all …]
H A DLazyEventDispatcherTest.php25 self::assertFalse($this->dispatcher->hasListeners('foo', 'Foo', 'json'));
26 $this->dispatcher->addListener('foo', ['a', 'foo']);
27 self::assertTrue($this->dispatcher->hasListeners('foo', 'Foo', 'json'));
35 $this->dispatcher->addListener('foo', ['a', 'foo']);
42 $this->dispatcher->addListener('pre', ['b', 'bar'], 'Bar');
43 $this->dispatcher->addListener('pre', ['b', 'foo'], 'Foo');
44 $this->dispatcher->addListener('pre', ['b', 'all']);
46 $b->bar($this->event, 'pre', 'Bar', 'json', $this->dispatcher);
47 $b->all($this->event, 'pre', 'Bar', 'json', $this->dispatcher);
48 $b->foo($this->event, 'pre', 'Foo', 'json', $this->dispatcher);
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/Subscriber/
H A DDoctrineProxySubscriberTest.php29 private $dispatcher; variable in JMS\\Serializer\\Tests\\Serializer\\EventDispatcher\\Subscriber\\DoctrineProxySubscriberTest
103 …$this->dispatcher->addListener('serializer.pre_serialize', static function () use (&$realClassEven…
108 $this->dispatcher->dispatch('serializer.pre_serialize', get_class($proxy), 'json', $event);
118 …$this->dispatcher->addListener('serializer.pre_serialize', static function (PreSerializeEvent $eve…
123 $this->dispatcher->dispatch('serializer.pre_serialize', get_class($proxy), 'json', $event);
133 $this->dispatcher->dispatch('serializer.pre_serialize', get_class($proxy), 'json', $event);
154 $this->dispatcher = new EventDispatcher();
155 $this->dispatcher->addSubscriber($this->subscriber);
H A DSymfonyValidatorValidatorSubscriberTest.php73 ->configureListeners(static function (EventDispatcher $dispatcher) use ($subscriber) {
74 $dispatcher->addSubscriber($subscriber);

123