primo commit
This commit is contained in:
		
							
								
								
									
										47
									
								
								modules/mod_feed/src/Dispatcher/Dispatcher.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								modules/mod_feed/src/Dispatcher/Dispatcher.php
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,47 @@ | ||||
| <?php | ||||
|  | ||||
| /** | ||||
|  * @package     Joomla.Site | ||||
|  * @subpackage  mod_feed | ||||
|  * | ||||
|  * @copyright   (C) 2023 Open Source Matters, Inc. <https://www.joomla.org> | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| namespace Joomla\Module\Feed\Site\Dispatcher; | ||||
|  | ||||
| use Joomla\CMS\Dispatcher\AbstractModuleDispatcher; | ||||
| use Joomla\CMS\Helper\HelperFactoryAwareInterface; | ||||
| use Joomla\CMS\Helper\HelperFactoryAwareTrait; | ||||
|  | ||||
| // phpcs:disable PSR1.Files.SideEffects | ||||
| \defined('_JEXEC') or die; | ||||
| // phpcs:enable PSR1.Files.SideEffects | ||||
|  | ||||
| /** | ||||
|  * Dispatcher class for mod_feed | ||||
|  * | ||||
|  * @since  5.1.0 | ||||
|  */ | ||||
| class Dispatcher extends AbstractModuleDispatcher implements HelperFactoryAwareInterface | ||||
| { | ||||
|     use HelperFactoryAwareTrait; | ||||
|  | ||||
|     /** | ||||
|      * Returns the layout data. | ||||
|      * | ||||
|      * @return  array | ||||
|      * | ||||
|      * @since   5.1.0 | ||||
|      */ | ||||
|     protected function getLayoutData(): array | ||||
|     { | ||||
|         $data = parent::getLayoutData(); | ||||
|  | ||||
|         $data['rssurl'] = $data['params']->get('rssurl', ''); | ||||
|         $data['rssrtl'] = $data['params']->get('rssrtl', 0); | ||||
|         $data['feed']   = $this->getHelperFactory()->getHelper('FeedHelper')->getFeedInformation($data['params']); | ||||
|  | ||||
|         return $data; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user