Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • disable-new-requests
  • fix-bulletin-view-missing-notes-error
  • add-missing-queue-managers
  • projects-task-53
  • projects-task-51
  • projects-task-43
  • projects-task-24
  • projects-task-31
  • projects-task-32
  • projects-task-8
  • project-setup-docs
  • projects-task-28
  • projects-task-27
  • projects-task-9
  • projects-task-7
  • mass-update-course-codes-in-sections
  • wdn-four
  • learning-outcomes
  • additional-bulletin-pages
  • svn-redesign
  • svn-popups
  • svn-trunk
  • svn-performance
  • svn-tim
25 results

weekly.phtml

Blame
  • weekly.phtml 1.99 KiB
    <?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/iace/reports/weekly.css', 'all'); ?>
    <?php $this->layout()->tagline = ''; ?>
    <?php $this->layout()->hideMenu = true; ?>
    
    <h2>
        ACE Certified Courses<br />
        Interim ACE Committee<br />
        Week Ending <?php echo date('F j, Y', $this->endDate->getTimestamp()); ?>
    </h2>
    
    <table>
    	<tr>
            <th><a href="<?php echo $this->url(array('sort' => 'slo')); ?>">SLO</a></th>
            <th><a href="<?php echo $this->url(array('sort' => 'college')); ?>">College</a></th>
            <th><a href="<?php echo $this->url(array('sort' => 'course')); ?>">Course</a></th>
            <th><a href="<?php echo $this->url(array('sort' => 'title')); ?>">Title</a></th>
            <th><a href="<?php echo $this->url(array('sort' => 'finalizeTime')); ?>">Certified</a></th>
    	</tr>
    	<?php foreach ($this->data as $record) { ?>
        <tr <?php if ($rowCount++ % 2) { ?>class="even"<?php } ?>>
            <td>
                <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
                    <?php echo $record->getSlo(); ?>
                </a>
            </td>
            <td>
                <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
                    <?php echo $record->getCollege(); ?>
                </a>
            </td>
            <td>
                <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
                    <?php echo $record->getCourseCode(); ?>
                </a>
            </td>
            <td>
                <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
                    <?php echo $record->getTitle(); ?>
                </a>
            </td>
            <td>
                <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
                    <?php echo date('n/j/Y', $record->getFinalizeTime()); ?>
                </a>
            </td>
        </tr>
        <? } ?>
    </table>