-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontributing.php
40 lines (32 loc) · 1.03 KB
/
contributing.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
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");
$descString = $_SERVER['DOCUMENT_ROOT']."/ecf/project-info/project-description.html";
$desc = file_get_contents($descString);
$App = new App();
$Nav = new Nav();
$Menu = new Menu();
include($App->getProjectCommon());
$html = <<<EOHTML
<div id="rightcolumn">
<div class="sideitem">
<h6>Under Construction</h6>
<div align="center"><img
align="middle" src="/images/under_construction.jpg"
border="0" alt="[under_construction]"/></a>
</div>
</div>
</div>
<div id="midcolumn">
<div class="homeitem3col">
<h3>ECF Contributing</h3>
<div style="margin:10px;">
</div>
<h3></h3>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>