示例#1
0
                                                                                                        <th width="15%" style="text-align: center;"><?php 
echo __('Edit');
?>
</th>
                                                                                                        <th width="15%" style="text-align: center;"><?php 
echo __('Hapus');
?>
</th>
                                                                                              </tr>
                                                                                    </thead>
                                                                                    <tbody>
                                                                                              <?php 
$c = new Criteria();
$c->add(CatalogStudentPeer::STUDENT_ID, $student->getId());
$cats = CatalogStudentPeer::doSelect($c);
$count = CatalogStudentPeer::doCount($c);
if ($count < 1) {
    ?>
                                                                                                                     <tr class="list"><td colspan="100"><div class="no_record"><?php 
    echo __('No record found');
    ?>
</div></td></tr>
                                                                                               <?php 
} else {
    ?>
                                                                                                                    <?php 
    foreach ($cats as $cat) {
        ?>
                                                                                                                            <tr class="list<?php 
        ++$i;
        if ($i % 2 == 0) {