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.
40 lines
1.2 KiB
40 lines
1.2 KiB
<?php |
|
|
|
use yii\apidoc\models\ClassDoc; |
|
use yii\apidoc\models\InterfaceDoc; |
|
use yii\apidoc\models\TraitDoc; |
|
/** |
|
* @var ClassDoc|InterfaceDoc|TraitDoc $type |
|
* @var boolean $protected |
|
* @var yii\web\View $this |
|
*/ |
|
|
|
if ($protected && count($type->getProtectedMethods()) == 0 || !$protected && count($type->getPublicMethods()) == 0) { |
|
return; |
|
} ?> |
|
|
|
<div class="summary docMethod"> |
|
<h2><?= $protected ? 'Protected Methods' : 'Public Methods' ?></h2> |
|
|
|
<p><a href="#" class="toggle">Hide inherited methods</a></p> |
|
|
|
<table class="summaryTable"> |
|
<colgroup> |
|
<col class="col-method" /> |
|
<col class="col-description" /> |
|
<col class="col-defined" /> |
|
</colgroup> |
|
<tr> |
|
<th>Method</th><th>Description</th><th>Defined By</th> |
|
</tr> |
|
<?php foreach($type->methods as $method): ?> |
|
<?php if($protected && $method->visibility == 'protected' || !$protected && $method->visibility != 'protected'): ?> |
|
<tr<?= $method->definedBy != $type->name ? ' class="inherited"' : '' ?> id="<?= $method->name ?>"> |
|
<td><?= $this->context->subjectLink($method, $method->name.'()') ?></td> |
|
<td><?= $method->shortDescription ?></td> |
|
<td><?= $this->context->typeLink($method->definedBy) ?></td> |
|
</tr> |
|
<?php endif; ?> |
|
<?php endforeach; ?> |
|
</table> |
|
</div>
|