blob: 9d6e9e5b529b86ad52d70222d3fe16b507d0f276 [file] [log] [blame]
<?php error_reporting(E_ALL); ini_set("display_errors", true); 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("_projectCommon.php"); # All on the same line to unclutter the user's desktop'
#*****************************************************************************
#
# Author: Donald Smith
# Date: 2005-11-11
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Strategic Member Developer Networks";
$pageKeywords = "Type, page, keywords, here";
$pageAuthor = "Type your name here";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
# $Nav->addCustomNav("My Link", "mypage.php", "_self");
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
# End: page-specific settings
require_once("./dev_networks/dev_networks.php");
$MATCHES = allDevNetworks();
$LIST = '<div class="homeitem3col"><h3>Strategic Member Developer Networks</h3><ul>';
foreach ($MATCHES as $a) {
$LIST .= '<li><table width="100%"><tr>
<td width="150px"><a href="' . $a['devNetworkURL'] . '"><img src="./dev_networks/images/'.$a['imageName'].'" border="0" alt="' . $a['devNetworkName'] . '"></a></td>
<td>' . $a['devNetworkDesc'] . '</td>
</tr></table></li>';
}
$LIST .= '</ul></div>';
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<style>
.homeitem3col ul li { list-style-image:none !important; list-style-type:none;}
</style>
<div id="maincontent">
<div id="midcolumn">
<p>Please visit and join the many developer focused communities that our Strategic Members support. You will find much
Eclipse based and relevant content in all of the communities listed below. If you notice any problems with the
links listed below, please be sure to drop us <a href="mailto:membership@eclipse.org">line</a>.</p>
$LIST
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Grouping</h6>
<ul>
<li><a href="showAllMembers.php?order=type">Membership Type</a></li>
<li><a href="showAllMembers.php">Alphabetically</a></li>
<li><a href="showAllMembers.php?order=complete">Separate the Incomplete Pages</a></li>
</ul>
</div>
<div class="sideitem">
<h6>Explore</h6>
<ul>
<li><a href="/membership/exploreMembership.php">Explore The Membership</a></li>
</ul>
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>