Files
yii/build/commands/api/views/seeAlso.php

10 lines
190 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>