oc-server3/htdocs/index.php

150 lines
5.5 KiB
PHP

<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
*
* Display some status information about the server and Opencaching
***************************************************************************/
require_once __DIR__ . '/lib/core.php';
require('./lib2/web.inc.php');
require('./lib2/logic/logpics.inc.php');
$sUserCountry = $login->getUserCountry();
// create object for "newest" information
$getNew = new getNew($sUserCountry);
$tpl->name = 'start';
$tpl->menuitem = MNU_START;
$tpl->caching = true;
$tpl->cache_lifetime = 300;
$tpl->cache_id = $sUserCountry;
if (!$tpl->is_cached())
{
if (!isset($translate) || $translate === null) {
require_once $GLOBALS['container']->get('ocde.config')->getBaseDir() . '/lib2/translate.inc.php';
}
// welcome message
if (isset ($opt['page']['message']))
$tpl->assign('message',$opt['page']['message']);
else
$tpl->assign('message',$translate->t('You can find everything you need to go Geocaching ...', '', '', 0));
// pictures
$tpl->assign('pictures', get_logpics(LOGPICS_FOR_STARTPAGE_GALLERY));
// news entries
$tpl->assign('news_onstart', $opt['news']['onstart'] );
if ($opt['news']['include'] == '')
{
$news = array();
$rs = sql_slave('SELECT `news`.`date_created` `date`, `news`.`content` `content`, `news_topics`.`name` `topic` FROM `news` INNER JOIN `news_topics` ON (`news`.`topic` = `news_topics`.`id`) WHERE `news`.`display`=1 ORDER BY `news`.`date_created` DESC LIMIT 0, 6');
$tpl->assign_rs('news', $rs);
sql_free_result($rs);
$tpl->assign('extern_news', false);
}
else
{
/*
* changed by bohrsty to fix error in displaying news from blog
* requires $opt['news']['count'] in settings for number of blog-items
* $opt['news']['include'] needs to be the RSS-URL of the blog
*
$url = $opt['news']['include'];
$url = str_replace('{style}', $opt['template']['style'], $url);
$newscontent = read_file($url, $opt['news']['maxsize']);
*/
// get newest blog entries
$tpl->assign('news', $getNew->feedForSmarty('blog'));
$tpl->assign('newsfeed', $opt['news']['include']);
$tpl->assign('extern_news', true);
}
/*
// forum entries
if (file_exists($opt['rootpath'] . 'cache2/phpbb.inc.php'))
require_once($opt['rootpath'] . 'cache2/phpbb.inc.php');
else
*/
if ($opt['forum']['url'] != '')
{
/*
* changed by bohrsty to add lastest forum-entries using RSS-feed
* requires $opt['forum']['count'] in settings for number of lastest forum-posts
* requires $opt['forum']['url'] in settings: RSS-feed-URL of the forum
*/
// get newest forum posts
$tpl->assign('phpbb_enabled', true);
$tpl->assign('forum',$getNew->feedForSmarty('forum'));
}
else
{
$tpl->assign('phpbb_enabled', false);
$tpl->assign('forum', '');
}
$phpbb_topics = array();
$tpl->assign('phpbb_topics', $phpbb_topics);
// $tpl->assign('phpbb_enabled', ($opt['cron']['phpbbtopics']['url'] != ''));
$tpl->assign('phpbb_name', $opt['cron']['phpbbtopics']['name']);
$tpl->assign('phpbb_link', $opt['cron']['phpbbtopics']['link']);
// current cache and log-counters
$tpl->assign('count_hiddens', number1000(sql_value_slave('SELECT COUNT(*) AS `hiddens` FROM `caches` WHERE `status`=1', 0)));
$tpl->assign('count_founds', number1000(sql_value_slave('SELECT COUNT(*) AS `founds` FROM `cache_logs` WHERE `type`=1', 0)));
$tpl->assign('count_users', number1000(sql_value_slave('SELECT COUNT(*) AS `users` FROM (SELECT DISTINCT `user_id` FROM `cache_logs` UNION DISTINCT SELECT DISTINCT `user_id` FROM `caches`) AS `t`', 0)));
// get newest events
$tpl->assign_rs('events', $getNew->rsForSmarty('event'));
// get newest caches
$tpl->assign_rs('newcaches', $getNew->rsForSmarty('cache'));
// enable minimap for new caches if url is set
if ($opt['logic']['minimapurl'] != '')
{
// get the correct api key for google maps
$gmkey = '';
$sHost = strtolower($_SERVER['HTTP_HOST']);
if (isset($opt['lib']['google']['mapkey'][$sHost]))
$gmkey = $opt['lib']['google']['mapkey'][$sHost];
// build static maps url by inserting api key
$url = $opt['logic']['minimapurl'];
$url = mb_ereg_replace('{gmkey}', $gmkey, $url);
// put into template
$tpl->assign('minimap_url', $url);
$tpl->assign('minimap_enabled', true);
}
else
{
$tpl->assign('minimap_enabled', false);
}
// last 30 days' top ratings
$tpl->assign_rs('topratings', $getNew->rsForSmarty('rating'));
$tpl->assign('toprating_days', $getNew->ratingDays());
// country and language parameters
$sUserCountryName = sql_value("SELECT IFNULL(`sys_trans_text`.`text`, `countries`.`name`)
FROM `countries`
LEFT JOIN `sys_trans` ON `countries`.`trans_id`=`sys_trans`.`id`
LEFT JOIN `sys_trans_text` ON `sys_trans`.`id`=`sys_trans_text`.`trans_id` AND `sys_trans_text`.`lang`='&2'
WHERE `countries`.`short`='&1'", '', $sUserCountry, $opt['template']['locale']);
$tpl->assign('usercountry', $sUserCountryName);
$tpl->assign('usercountryCode', $sUserCountry);
if ($opt['template']['locale'] == $opt['page']['main_locale'])
$tpl->assign('sections', array('news', 'events', 'logpics', 'recommendations', 'forum', 'newcaches'));
else
$tpl->assign('sections', array('events', 'recommendations', 'newcaches', 'logpics', 'forum', 'news'));
}
$tpl->display();