0byt3m1n1
Path:
/
home
/
kassiope
/
OLD
/
00-OLD
/
templates
/
beez
/
html
/
mod_newsflash
/
[
Home
]
File: vert.php
<?php // @version $Id: vert.php 10381 2008-06-01 03:35:53Z pasamio $ defined('_JEXEC') or die('Restricted access'); ?> <?php if (count($list) == 1) : $item = $list[0]; modNewsFlashHelper::renderItem($item, $params, $access); elseif (count($list) > 1) : ?> <ul class="vert<?php echo $params->get('moduleclass_sfx'); ?>"> <?php foreach ($list as $item) : ?> <li> <?php modNewsFlashHelper::renderItem($item, $params, $access); ?> </li> <?php endforeach; ?> </ul> <?php endif;