forked from npatel2012/myfaq-php-isa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.php
executable file
·53 lines (47 loc) · 1.98 KB
/
main.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
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* The main start page with the Top10 and the latest messages
*
* PHP Version 5.3
*
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/.
*
* @category phpMyFAQ
* @package Frontend
* @author Thorsten Rinne <thorsten@phpmyfaq.de>
* @copyright 2002-2015 phpMyFAQ Team
* @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
* @link http://www.phpmyfaq.de
* @since 2002-08-23
*/
if (!defined('IS_VALID_PHPMYFAQ')) {
$protocol = 'http';
if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON'){
$protocol = 'https';
}
header('Location: ' . $protocol . '://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['SCRIPT_NAME']));
exit();
}
$news = new PMF_News($faqConfig);
$archived = PMF_Filter::filterInput(INPUT_GET, 'newsid', FILTER_VALIDATE_INT);
$writeNewsHeader = $faqConfig->get('main.titleFAQ');
if (!is_null($archived)) {
$writeNewsHeader .= $PMF_LANG['newsArchive'];
$writeNewsRSS = '';
$showAllNews = sprintf('<a href="?%s">%s</a>', $sids, $PMF_LANG['newsShowCurrent']);
$archived = true;
} else {
$writeNewsHeader .= ' ' . $PMF_LANG['msgNews'];
$writeNewsRSS = ' <a href="feed/news/rss.php" target="_blank">' .
'<img id="newsRSS" src="assets/img/feed.png" width="16" height="16" alt="RSS" /></a>';
$showAllNews = sprintf('<a href="?%snewsid=0">%s</a>', $sids, $PMF_LANG['newsShowArchive']);
}
$tpl->parse('writeContent', array(
'writeNewsHeader' => $writeNewsHeader,
'writeNewsRSS' => $writeNewsRSS,
'writeNews' => $news->getNews($archived),
'showAllNews' => $showAllNews,
'writeNumberOfArticles' => $plr->getMsg('plmsgHomeArticlesOnline', $faq->getNumberOfRecords($LANGCODE))));
$tpl->merge('writeContent', 'index');