___init(); parent::__construct($processorFactory, $eventManager, $structure, $messageManager, $themeResolver, $readerPool, $generatorPool, $cache, $readerContextFactory, $generatorContextFactory, $appState, $logger, $cacheable, $serializer, $cacheLifetime); } /** * {@inheritdoc} */ public function generateXml() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'generateXml'); return $pluginInfo ? $this->___callPlugins('generateXml', func_get_args(), $pluginInfo) : parent::generateXml(); } /** * {@inheritdoc} */ public function generateElements() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'generateElements'); return $pluginInfo ? $this->___callPlugins('generateElements', func_get_args(), $pluginInfo) : parent::generateElements(); } /** * {@inheritdoc} */ public function getOutput() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOutput'); return $pluginInfo ? $this->___callPlugins('getOutput', func_get_args(), $pluginInfo) : parent::getOutput(); } }