23 August 2005 * * @package webtrees * @subpackage Charts * @version $Id$ */ define('WT_SCRIPT_NAME', 'hourglass_ajax.php'); require './includes/session.php'; require_once WT_ROOT.'includes/controllers/hourglass_ctrl.php'; /* * The purpose of this page is to build the left half of the Hourglass chart via Ajax. * This page only produces a husband and wife with the connecting lines to unite and * label the pair as a pair. */ $controller = new HourglassController(); $controller->init(); header('Content-type: text/html; charset=UTF-8'); // -- print html header information if (isset($_REQUEST['type']) && $_REQUEST['type']=='desc') $controller->print_descendency($controller->pid, 1, false); else $controller->print_person_pedigree($controller->pid, 0); ?>