2009-12-18 12:56:12 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright 2009 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 12:56:12 +00:00
|
|
|
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
|
|
|
* @param GET person_id
|
|
|
|
*/
|
|
|
|
$person = new Person($_GET['person_id']);
|
|
|
|
|
|
|
|
$template = new Template();
|
|
|
|
$template->title = $person->getFullname();
|
|
|
|
$template->blocks[] = new Block('people/personInfo.inc',array('person'=>$person));
|
|
|
|
echo $template->render();
|