98 lines
2.7 KiB
PHP
98 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* @copyright 2009 City of Bloomington, Indiana
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.txt
|
|
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
|
* @param IntermentList $this->intermentList
|
|
* @param GET sort
|
|
*/
|
|
$previousSort = isset($_GET['sort']) ? $_GET['sort'] : 'deceasedDate';
|
|
$url = new URL($_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']);
|
|
$return_url = $url->__toString();
|
|
?>
|
|
<div class="interfaceBox">
|
|
<h2>
|
|
<?php
|
|
if (userIsAllowed('Interments')) {
|
|
$addURL = new URL(BASE_URL.'/interments/addInterment.php');
|
|
$addURL->return_url = $return_url;
|
|
echo "
|
|
<button type=\"button\" class=\"add\" onclick=\"document.location.href='$addURL';\">
|
|
Add
|
|
</button>
|
|
";
|
|
}
|
|
?>
|
|
Interments
|
|
</h2>
|
|
<table>
|
|
<thead>
|
|
<tr><th></th>
|
|
<th><?php
|
|
$url->sort = $previousSort=='lastname' ? 'lastname desc' : 'lastname';
|
|
echo "<a href=\"$url\" class=\"sorting\">Last Name</a>";
|
|
?>
|
|
</th>
|
|
<th><?php
|
|
$url->sort = $previousSort=='firstname' ? 'firstname desc' : 'firstname';
|
|
echo "<a href=\"$url\" class=\"sorting\">First Name</a>";
|
|
?>
|
|
</th>
|
|
<th><?php
|
|
$url->sort = $previousSort=='deceasedDate' ? 'deceasedDate desc' : 'deceasedDate';
|
|
echo "<a href=\"$url\" class=\"sorting\">Date of Death</a>";
|
|
?>
|
|
</th>
|
|
<th>Cemetery</th>
|
|
<th>Section & Lot</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
foreach ($this->intermentList as $interment) {
|
|
$editButton = '';
|
|
if (userIsAllowed('Interments')) {
|
|
$editURL = new URL(BASE_URL.'/interments/updateInterment.php');
|
|
$editURL->interment_id = $interment->getId();
|
|
$editURL->return_url = $return_url;
|
|
$editButton = "
|
|
<button type=\"button\" class=\"edit\" onclick=\"document.location.href='$editURL';\">
|
|
Edit
|
|
</button>
|
|
";
|
|
}
|
|
$last = View::escape($interment->getLastname());
|
|
$first = View::escape($interment->getFirstname());
|
|
$date = $interment->getDeceasedDate('n/j/Y');
|
|
$cemetery = View::escape($interment->getCemetery());
|
|
|
|
$section_lot = array();
|
|
if ($interment->getSection()) {
|
|
$section_lot[] = $interment->getSection();
|
|
}
|
|
if ($interment->getLot()) {
|
|
$section_lot[] = $interment->getLot();
|
|
}
|
|
$section_lot = View::escape(implode(', ',$section_lot));
|
|
|
|
echo "
|
|
<tr><td>$editButton</td>
|
|
<td><a href=\"{$interment->getURL()}\">$last</a></td>
|
|
<td>$first</td>
|
|
<td>$date</td>
|
|
<td>$cemetery</td>
|
|
<td>$section_lot</td>
|
|
</tr>
|
|
";
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<?php
|
|
if ($this->intermentList->getPaginator()) {
|
|
$pageNavigation = new Block('pageNavigation.inc',
|
|
array('pages'=>$this->intermentList->getPaginator()->getPages()));
|
|
echo $pageNavigation->render('html');
|
|
}
|
|
?>
|