Files
yii/build/commands/api/views/seeAlso.php
qiang.xue 662798d8a5
2008-09-28 12:03:53 +00:00

10 lines
201 B
PHP

<?php if(empty($object->see)) return; ?>
<div class="SeeAlso">
<h4>See Also</h4>
<ul>
<?php foreach($object->see as $url): ?>
<li><?php echo $url; ?></li>
<?php endforeach; ?>
</ul>
</div>