14 lines
437 B
PHP
14 lines
437 B
PHP
<?php
|
|
/**
|
|
* @copyright 2009 City of Bloomington, Indiana
|
|
* @license http://www.gnu.org/licenses/agpl.txt GNU/AGPL, see LICENSE.txt
|
|
* @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();
|