Files
yii/build/commands/api/views/eventSummary.php
qiang.xue 482668e2b0
2010-09-18 01:01:54 +00:00

25 lines
738 B
PHP

<?php if(empty($class->events)) return; ?>
<div class="summary docEvent">
<h2>Events</h2>
<p><a href="#" class="toggle">Hide inherited events</a></p>
<table class="summaryTable">
<colgroup>
<col class="col-event" />
<col class="col-description" />
<col class="col-defined" />
</colgroup>
<tr>
<th>Event</th><th>Description</th><th>Defined By</th>
</tr>
<?php foreach($class->events as $event): ?>
<tr<?php echo $event->isInherited?' class="inherited"':''; ?> id="<?php echo $event->name; ?>">
<td><?php echo $this->renderSubjectUrl($event->definedBy,$event->name); ?></td>
<td><?php echo $event->introduction; ?></td>
<td><?php echo $this->renderTypeUrl($event->definedBy); ?></td>
</tr>
<?php endforeach; ?>
</table>
</div>