Files
yii/build/commands/api/views/class.php
2010-09-17 18:32:02 +00:00

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)); ?>