mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-06 16:16:53 +01:00
10 lines
190 B
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>
|