- <?php
- /*
- * Lokorin.com
- * Copyright 2004-2006
- * Licensed under the GNU LGPL. See COPYING for full terms.
- */
- /**
- * A project module that displays the basic information about the project.
- * @author Andreas Launila
- * @version $Revision: 1.7 $
- * @package com.lokorin.lokorin.modules
- * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
- */
-
- /**
- * For access to common constants and functions.
- */
- require_once('common.php');
- doInclude('lib_projects');
- Page::getInstance()->setTitle('About');
-
- try {
- $project = getProjectBasedOnDir();
- Page::getInstance()->setProject($project);
- } catch(Exception $e) {
- logFatalException($e);
- }
-
- echo $project->getInfo();
- Page::getInstance()->display();
-
- ?>