| 
<?php/**
 * Model Layer
 */
 // Include the main Propel script
 require_once ROOT.'/model/vendor/propel/runtime/lib/Propel.php';
 // Initialize Propel with the runtime configuration
 Propel::init(ROOT."/model/build/conf/address_book-conf.php");
 // Add the generated 'classes' directory to the include path
 set_include_path(ROOT."/model/build/classes" . PATH_SEPARATOR . get_include_path());
 /**
 * Controller Layer
 */
 require_once ROOT.'/controller/PHPInterfaceTags.php';
 require_once ROOT.'/controller/PHPClassForm.php';
 require_once ROOT.'/controller/PHPClassFormInputTypes.php';
 require_once ROOT.'/../PHPClassDescribeDatabase.php';
 require_once ROOT.'/../PHPClassManageRowData.php';
 require_once ROOT.'/controller/PHPClassFormAddressBook.php';
 
 print '<!DOCTYPE html>
 <html>
 <head>
 <title>Address Book</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
 print ' <link rel="stylesheet" href="css/address-book.css" />';
 print ' </head>
 <body>';
 
 |