コード例 #1
0
ファイル: default.php プロジェクト: joebushi/joomla
                echo "</ul>";
            }
            $curLevel = $item->level;
        } elseif ($difLevel > 0) {
            for ($i = 0, $n = $difLevel; $i < $n; $i++) {
                ?>
			<ul>
		<?php 
            }
            $curLevel = $item->level;
        }
        ?>

	<li>
		<span class="jitem-title"><a href="<?php 
        echo NewsfeedsRoute::category('index.php?option=com_newsfeeds&view=category&id=' . $this->escape($item->slug));
        ?>
">
			<?php 
        echo $this->escape($item->title);
        ?>
</a>
		</span>
		<?php 
        if ($item->description) {
            ?>
			<div class="jdescription">
				<?php 
            echo $item->description;
            ?>
			</div>
コード例 #2
0
ファイル: default_siblings.php プロジェクト: joebushi/joomla
    ?>
	no siblings
<?php 
} else {
    ?>
	<h5>Siblings</h5>
	<ul>
		<?php 
    foreach ($this->siblings as &$item) {
        ?>
		<li>
			<?php 
        if ($item->id != $this->item->id) {
            ?>
			<a href="<?php 
            echo JRoute::_(NewsfeedsRoute::category($item->slug));
            ?>
">
				<?php 
            echo $this->escape($item->title);
            ?>
</a>
			<?php 
        } else {
            ?>
				<?php 
            echo $this->escape($item->title);
            ?>
			<?php 
        }
        ?>