Files
yii/build/commands/api/views/classSummary.php
qiang.xue 662798d8a5
2008-09-28 12:03:53 +00:00

38 lines
889 B
PHP

<table class="summaryTable">
<tr>
<th>Package</th>
<td><?php echo '{{index::'.$class->package.'|'.$class->package.'}}'; ?></td>
</tr>
<tr>
<th>Inheritance</th>
<td><?php echo $this->renderInheritance($class); ?></td>
</tr>
<?php if(!empty($class->interfaces)): ?>
<tr>
<th>Implements</th>
<td><?php echo $this->renderImplements($class); ?></td>
</tr>
<?php endif; ?>
<?php if(!empty($class->subclasses)): ?>
<tr>
<th>Subclasses</th>
<td><?php echo $this->renderSubclasses($class); ?></td>
</tr>
<?php endif; ?>
<?php if(!empty($class->since)): ?>
<tr>
<th>Since</th>
<td><?php echo $class->since; ?></td>
</tr>
<?php endif; ?>
<?php if(!empty($class->version)): ?>
<tr>
<th>Version</th>
<td><?php echo $class->version; ?></td>
</tr>
<?php endif; ?>
</table>
<div id="classDescription">
<?php echo $class->description; ?>
</div>