mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-07 00:26:52 +01:00
30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
<h1><?php echo $class->name; ?></h1>
|
|
<div id="nav">
|
|
{{index|All Packages}}
|
|
<?php if(!empty($class->properties)): ?>
|
|
| <a href="#properties">Properties</a>
|
|
<?php endif; ?>
|
|
<?php if(!empty($class->methods)): ?>
|
|
| <a href="#methods">Methods</a>
|
|
<?php endif; ?>
|
|
<?php if(!empty($class->events)): ?>
|
|
| <a href="#events">Events</a>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<?php $this->renderPartial('classSummary',array('class'=>$class)); ?>
|
|
|
|
<a name="properties"></a>
|
|
<?php $this->renderPartial('propertySummary',array('class'=>$class,'protected'=>false)); ?>
|
|
<?php $this->renderPartial('propertySummary',array('class'=>$class,'protected'=>true)); ?>
|
|
|
|
<a name="methods"></a>
|
|
<?php $this->renderPartial('methodSummary',array('class'=>$class,'protected'=>false)); ?>
|
|
<?php $this->renderPartial('methodSummary',array('class'=>$class,'protected'=>true)); ?>
|
|
|
|
<a name="events"></a>
|
|
<?php $this->renderPartial('eventSummary',array('class'=>$class)); ?>
|
|
|
|
<?php $this->renderPartial('propertyDetails',array('class'=>$class)); ?>
|
|
<?php $this->renderPartial('methodDetails',array('class'=>$class)); ?>
|