| <?php |
| set_include_path($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common" . PATH_SEPARATOR . $_SERVER['DOCUMENT_ROOT'] . "/projects" . PATH_SEPARATOR . get_include_path()); |
| |
| require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); |
| require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); |
| require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); |
| |
| $App = new App(); |
| $Nav = new Nav(); |
| $Menu = new Menu(); |
| include($App->getProjectCommon()); |
| |
| $pageTitle = "PHP Development Tools Project"; |
| $pageKeywords = "PHP, tool, web"; |
| $pageAuthor = "PDT Committers"; |
| |
| include("_projectCommon.php"); # All on the same line to unclutter the user's desktop' |
| |
| ob_start(); |
| ?> |
| |
| <div id="maincontent"> |
| <div id="midcolumn"> |
| |
| <h2>About2 </h2> |
| <p> The PDT project provides a PHP Development |
| Tools framework for the Eclipse platform. This project encompasses all development |
| components necessary to develop PHP and facilitate extensibility. |
| It leverages the existing Web Tools Platform (WTP) and Dynamic Languages Toolkit (DLTK) in providing developers with PHP capabilities. |
| </p> |
| <br/> |
| <h2>Project Principles:</h2> |
| <ul> |
| <li> Intuitive and easy to learn </li> |
| <li> Seamless integration with other Eclipse projects </li> |
| <li> Adherence to Eclipse standards </li> |
| <li> Extensibility </li> |
| <li> Continuous support of PHP developments </li> |
| </ul> |
| </div> |
| </div> |
| |
| <? |
| $html = ob_get_contents(); |
| ob_end_clean(); |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |