/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
modules/mod_articles_news/tmpl/default.php
26 строк
641 B
Harald Leithner
Phase 1 convert CMS to PSR-12
27 июн 2022, 21:18
27 июн 2022, 21:18
e7f5cc1
Код
Авторство
О чём код?
<?php /** * @package Joomla.Site * @subpackage mod_articles_news * * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Helper\ModuleHelper; if (!$list) { return; } ?> <div class="mod-articlesnews newsflash"> <?php foreach ($list as $item) : ?> <div class="mod-articlesnews__item" itemscope itemtype="https://schema.org/Article"> <?php require ModuleHelper::getLayoutPath('mod_articles_news', '_item'); ?> </div> <?php endforeach; ?> </div>