mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-10 18:16:53 +01:00
38 lines
889 B
PHP
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>
|