Esempio n. 1
0
<?php

require __DIR__ . '/vendor/autoload.php';
use Elgg\Releases;
$devs = Releases::getReleases(Releases::$dev_branch);
if ($devs) {
    reset($devs);
    list($dev_version, $dev_date) = each($devs);
}
$stables = Releases::getReleases(Releases::$stable_branch);
reset($stables);
list($stable_version, $stable_date) = each($stables);
$lts_releases = Releases::getReleases(Releases::$lts_branch);
reset($lts_releases);
list($lts_version, $lts_date) = each($lts_releases);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title>Elgg - Open Source Social Networking Platform.</title>
	<meta name="description" content="Elgg is a leading open source social networking engine which can be used to power your social network." />
	<meta name="keywords" content="open source social networking, social intranet, collaboration software, social networking software, community software, social media, social publishing, social media platform" />
	<meta name="robots" content="index, follow" />
	<link rel="shortcut icon" href="favicon.ico" />
	<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<?php 
include 'analytics.php';
?>
<body>
Esempio n. 2
0
			<ul class="elgg-releases">
			<?php 
foreach (Releases::$security_branches as $branch) {
    $releases = Releases::getReleases($branch);
    foreach ($releases as $version => $date) {
        echo release_li($version, $date);
    }
}
?>
			</ul>

			<h1 class="header_color">Unsupported releases</h1>
			<p><b>These versions of Elgg are no longer supported:</b></p>
			<ul class="elgg-releases">
			<?php 
foreach (Releases::getUnsupportedReleases() as $version => $date) {
    echo release_li($version, $date, !in_array($version, Releases::$untagged_releases));
}
?>
			</ul>
		</div>
		<div style="clear:both;"></div>
	</div><!-- // content -->
<?php 
include "globalfooter.php";
?>
</div>
<?php 
include 'urchin.php';
?>
</body>
Esempio n. 3
0
<?php

use Elgg\Releases;
$devs = Releases::getReleases(Releases::$dev_branch);
if ($devs) {
    reset($devs);
    list($dev_version, $dev_date) = each($devs);
}
$stables = Releases::getReleases(Releases::$stable_branch);
reset($stables);
list($stable_version, $stable_date) = each($stables);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title>Elgg - Open Source Social Networking Engine.</title>
	<meta name="description" content="Elgg is a leading open source social networking engine which can be used to power your social network." />
	<meta name="keywords" content="open source social networking, social intranet, collaboration software, social networking software, community software, social media, social publishing, social media platform" />
	<meta name="robots" content="index, follow" />
	<link rel="shortcut icon" href="favicon.ico" />
	<link href="style2.css" rel="stylesheet" type="text/css" />

<?php 
include 'analytics.php';
?>
</head>
<body id="homepage">
<?php 
include "globalheader.php";
?>