Files
mirror-processhacker/misc/website/websitev2/config.php
T
wj32 70614f7d0e updated config.php for 2.29 release
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5228 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2012-12-17 08:02:20 +00:00

258 lines
6.7 KiB
PHP

<?php
$LATEST_PH_VERSION = "2.29";
$LATEST_PH_BUILD = "5220";
$LATEST_PH_RELEASE_DATE = "17th of December 2012";
$LATEST_PH_BIN_SIZE = "2.4 MB";
$LATEST_PH_BIN_SHA1 = "9599785c56bd364a2fe43e9551a49241578e7687";
$LATEST_PH_SDK_SIZE = "2.6 MB";
$LATEST_PH_SDK_SHA1 = "76acd1a5de8fabdec4adbfa4057fee271a5a4f60";
$LATEST_PH_SETUP_SIZE = "1.8 MB";
$LATEST_PH_SETUP_SHA1 = "0b6fac5ed4bff24dec19dfd759b41f5b3b72f22c";
$LATEST_PH_SOURCE_SIZE = "2.6 MB";
$LATEST_PH_SOURCE_SHA1 = "986e1d83017c4324e169552f3cd5cb5ff919e47d";
$LATEST_PH_RELEASE_NEWS = "http://processhacker.sourceforge.net/forums/viewtopic.php?f=1&t=866";
// =================================================
// AD CODE -- DO NOT CHANGE
$DISABLE_ADS = false;
$LIVE_ADS = true;
function ad_unit_1()
{
global $DISABLE_ADS;
global $LIVE_ADS;
if ($DISABLE_ADS) {
return;
}
if ($LIVE_ADS)
{
echo <<<END
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9059400272001645";
/* Unit 1 */
google_ad_slot = "8216753389";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
END;
}
else
{
echo '<img src="images/ad_300x250.png">';
}
}
function ad_unit_3()
{
global $DISABLE_ADS;
global $LIVE_ADS;
if ($DISABLE_ADS) {
return;
}
if ($LIVE_ADS)
{
echo <<<END
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9059400272001645";
/* Unit 3 */
google_ad_slot = "3762227384";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
END;
}
else
{
echo '<img src="images/ad_336x280.png">';
}
}
function ad_unit_4()
{
global $DISABLE_ADS;
global $LIVE_ADS;
if ($DISABLE_ADS) {
return;
}
if ($LIVE_ADS)
{
echo <<<END
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9059400272001645";
/* Unit 4 */
google_ad_slot = "9669160189";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
END;
}
else
{
echo '<img src="images/ad_728x90.png">';
}
}
function ad_unit_5()
{
global $DISABLE_ADS;
global $LIVE_ADS;
if ($DISABLE_ADS) {
return;
}
if ($LIVE_ADS)
{
echo <<<END
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9059400272001645";
/* Unit 5 */
google_ad_slot = "3622626584";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
END;
}
else
{
echo '<img src="images/ad_336x280.png">';
}
}
// END AD CODE
// =================================================
// How Many Topics do you want to display?
$topicnumber = 6;
// Allow phpbb functions to be called outside of the forum root.
define('IN_PHPBB', true);
// Allow the site to continue running if the board is unavailable,
// this means the website and update.php pages will continue working as normal
// if the board is upgrading, disabled etc... instead of replacing the pages and showing 'Board Offline'
define('IN_LOGIN', true);
// We need to find the root path since we're running on Sourceforge's shared-hosts setup,
// meaning we end up running on multiple servers (and sometimes multiple paths) at the same time.
// So search for the current __FILE__ path and append the include paths with the current directory.
$phpbb_root_path = './forums/';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
// import phpbb functions
@include($phpbb_root_path.'config.'.$phpEx);
@include($phpbb_root_path.'common.'.$phpEx);
@include($phpbb_root_path.'includes/bbcode.'.$phpEx);
@include($phpbb_root_path.'includes/functions_display.'.$phpEx);
// Check if we imported the phpbb functions.
if (!empty($user) && !empty($auth)) {
// Start forum session
$user->session_begin();
$auth->acl($user->data);
$user->setup();
}
// select database tables
$table_topics = @$table_prefix. "topics";
$table_forums = @$table_prefix. "forums";
$table_posts = @$table_prefix. "posts";
$table_users = @$table_prefix. "users";
$table_sessions = @$table_prefix. "sessions";
// function for converting time into time elapsed
function get_time_ago($time_stamp)
{
$time_difference = strtotime('now') - $time_stamp;
if ($time_difference >= 60 * 60 * 24 * 365.242199) {
/*
* 60 seconds/minute * 60 minutes/hour * 24 hours/day * 365.242199 days/year
* This means that the time difference is 1 year or more
*/
return get_time_ago_string($time_stamp, 60 * 60 * 24 * 365.242199, 'year');
} elseif ($time_difference >= 60 * 60 * 24 * 30.4368499) {
/*
* 60 seconds/minute * 60 minutes/hour * 24 hours/day * 30.4368499 days/month
* This means that the time difference is 1 month or more
*/
return get_time_ago_string($time_stamp, 60 * 60 * 24 * 30.4368499, 'month');
} elseif ($time_difference >= 60 * 60 * 24 * 7) {
/*
* 60 seconds/minute * 60 minutes/hour * 24 hours/day * 7 days/week
* This means that the time difference is 1 week or more
*/
return get_time_ago_string($time_stamp, 60 * 60 * 24 * 7, 'week');
} elseif ($time_difference >= 60 * 60 * 24) {
/*
* 60 seconds/minute * 60 minutes/hour * 24 hours/day
* This means that the time difference is 1 day or more
*/
return get_time_ago_string($time_stamp, 60 * 60 * 24, 'day');
} elseif ($time_difference >= 60 * 60) {
/*
* 60 seconds/minute * 60 minutes/hour
* This means that the time difference is 1 hour or more
*/
return get_time_ago_string($time_stamp, 60 * 60, 'hour');
} else {
/*
* 60 seconds/minute
* This means that the time difference is a matter of minutes
*/
return get_time_ago_string($time_stamp, 60, 'minute');
}
}
function get_time_ago_string($time_stamp, $divisor, $time_unit)
{
$time_difference = strtotime("now") - $time_stamp;
$time_units = floor($time_difference / $divisor);
settype($time_units, 'string');
if ($time_units === '0') {
return 'less than 1 ' . $time_unit . ' ago';
} elseif ($time_units === '1') {
return '1 ' . $time_unit . ' ago';
} else {
/*
* More than "1" $time_unit. This is the "plural" message.
*/
// TODO: This pluralizes the time unit, which is done by adding "s" at the end; this will not work for i18n!
return $time_units . ' ' . $time_unit . 's ago';
}
}
?>