Guest User

Untitled

a guest
Sep 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <?php
  2. /**
  3.  * @package     Joomla.Site
  4.  * @subpackage  mod_articles_latest
  5.  * @copyright   Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
  6.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
  7.  */
  8.  
  9. // no direct access
  10. defined('_JEXEC') or die;
  11. ?>
  12. <ul class="latestnews<?php echo $moduleclass_sfx; ?> list">
  13. <?php foreach ($list as $item) :  ?>
  14.     <li>
  15.         <a href="<?php echo $item->link; ?>">
  16.             <?php echo $item->title; ?></a>
  17.     </li>
  18. <?php endforeach; ?>
  19. </ul>
Add Comment
Please, Sign In to add comment