2009-12-18 14:28:25 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2010-01-07 16:19:46 +00:00
|
|
|
* @copyright 2009-2010 City of Bloomington, Indiana
|
2011-06-14 13:29:37 +00:00
|
|
|
* @license http://www.gnu.org/licenses/agpl.txt GNU/AGPL, see LICENSE.txt
|
2009-12-18 14:28:25 +00:00
|
|
|
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
|
|
|
*/
|
|
|
|
$cemeteryList = new CemeteryList();
|
|
|
|
$cemeteryList->find();
|
|
|
|
|
2010-01-07 16:19:46 +00:00
|
|
|
$template = isset($_GET['format']) ? new Template('default',$_GET['format']) : new Template();
|
2009-12-18 14:28:25 +00:00
|
|
|
$template->blocks[] = new Block('cemeteries/cemeteryList.inc',array('cemeteryList'=>$cemeteryList));
|
|
|
|
echo $template->render();
|