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.
50 lines
1.4 KiB
50 lines
1.4 KiB
11 years ago
|
<?php
|
||
|
|
||
11 years ago
|
use yii\apidoc\models\ClassDoc;
|
||
|
use yii\apidoc\models\InterfaceDoc;
|
||
|
use yii\apidoc\models\TraitDoc;
|
||
11 years ago
|
/**
|
||
|
* @var ClassDoc|InterfaceDoc|TraitDoc $item
|
||
|
* @var yii\web\View $this
|
||
|
*/
|
||
|
|
||
|
?>
|
||
|
<h1><?php
|
||
|
if ($item instanceof InterfaceDoc) {
|
||
|
echo 'Interface ';
|
||
|
} elseif ($item instanceof TraitDoc) {
|
||
|
echo 'Trait ';
|
||
|
} else {
|
||
|
echo 'Class ';
|
||
|
}
|
||
|
echo $item->name;
|
||
|
?></h1>
|
||
|
<div id="nav">
|
||
|
<a href="index.html">All Classes</a>
|
||
|
<?php if(!($item instanceof InterfaceDoc) && !empty($item->properties)): ?>
|
||
|
| <a href="#properties">Properties</a>
|
||
|
<?php endif; ?>
|
||
|
<?php if(!empty($item->methods)): ?>
|
||
|
| <a href="#methods">Methods</a>
|
||
|
<?php endif; ?>
|
||
|
<?php if($item instanceof ClassDoc && !empty($item->events)): ?>
|
||
|
| <a href="#events">Events</a>
|
||
|
<?php endif; ?>
|
||
|
</div>
|
||
|
|
||
|
<?= $this->render('classSummary', ['item' => $item]); ?>
|
||
|
|
||
|
<a name="properties"></a>
|
||
|
<?php //$this->renderPartial('propertySummary',array('class'=>$item,'protected'=>false)); ?>
|
||
|
<?php //$this->renderPartial('propertySummary',array('class'=>$item,'protected'=>true)); ?>
|
||
|
|
||
|
<a name="methods"></a>
|
||
|
<?php //$this->renderPartial('methodSummary',array('class'=>$item,'protected'=>false)); ?>
|
||
|
<?php //$this->renderPartial('methodSummary',array('class'=>$item,'protected'=>true)); ?>
|
||
|
|
||
|
<a name="events"></a>
|
||
|
<?php //$this->renderPartial('eventSummary',array('class'=>$item)); ?>
|
||
|
|
||
|
<?php //$this->renderPartial('propertyDetails',array('class'=>$item)); ?>
|
||
|
<?php //$this->renderPartial('methodDetails',array('class'=>$item)); ?>
|