You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
470 B
27 lines
470 B
11 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @var yii\apidoc\models\BaseDoc $object
|
||
|
* @var yii\web\View $this
|
||
|
*/
|
||
|
|
||
|
$see = [];
|
||
|
foreach($object->tags as $tag) {
|
||
|
/** @var $tag phpDocumentor\Reflection\DocBlock\Tag\SeeTag */
|
||
|
if (get_class($tag) == 'phpDocumentor\Reflection\DocBlock\Tag\SeeTag') {
|
||
|
$see[] = $tag->getReference();
|
||
|
}
|
||
|
}
|
||
|
if (empty($see)) {
|
||
|
return;
|
||
|
}
|
||
|
?>
|
||
|
<div class="SeeAlso">
|
||
|
<h4>See Also</h4>
|
||
|
<ul>
|
||
|
<?php foreach($see as $ref): ?>
|
||
|
<li><?= $ref ?></li>
|
||
|
<?php endforeach; ?>
|
||
|
</ul>
|
||
|
</div>
|