-
Notifications
You must be signed in to change notification settings - Fork 27
/
viewnews.php
88 lines (70 loc) · 3.8 KB
/
viewnews.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/////////////////////////////////////////////////////////////////////////////////////
// xbtit - Bittorrent tracker/frontend
//
// Copyright (C) 2004 - 2015 Btiteam
//
// This file is part of xbtit.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// 3. The name of the author may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
// IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
////////////////////////////////////////////////////////////////////////////////////
error_reporting(E_ALL & ~E_NOTICE);
if (!defined("IN_BTIT"))
die("non direct access!");
global $btit_settings;
if ($CURUSER["view_news"]=="no")
{
err_msg($language["ERROR"],$language["NOT_AUTHORIZED"]."!");
stdfoot();
exit;
}
// global $CURUSER, $limitqry, $adm_menu, $CURRENTPATH, $TABLE_PREFIX;
// $output="";
if ($limit>0)
$limitqry="LIMIT $limit";
$res=get_result("SELECT n.id, n.title, n.news,UNIX_TIMESTAMP(n.date) as news_date, u.username FROM {$TABLE_PREFIX}news n INNER JOIN {$TABLE_PREFIX}users u on u.id=n.user_id ORDER BY date DESC $limitqry",true,$btit_settings['cache_duration']);
// load language file
require(load_language("lang_viewnews.php"));
$viewnewstpl = new bTemplate();
$viewnewstpl -> set("language",$language);
$viewnewstpl -> set("can_edit_news", $CURUSER["edit_news"]=="yes", TRUE);
$viewnewstpl -> set("can_edit_news_1", $CURUSER["edit_news"]=="yes", TRUE);
$viewnewstpl -> set("can_delete_news", $CURUSER["delete_news"]=="yes", TRUE);
$viewnews=array();
$i=0;
$viewnewstpl -> set("news_exists", (count($res) > 0),TRUE);
$viewnewstpl -> set("insert_news_link", (count($res) == 0?"<a href=\"index.php?page=news&act=add\"><img border=\"0\" alt=\"".$language["ADD"]."\" src=\"$BASEURL/images/new.gif\" /></a>":""));
include("$THIS_BASEPATH/include/offset.php");
foreach ($res as $rows)
{
$viewnews[$i]["add_edit_news"] = "<a href=\"index.php?page=news&act=add\">".$language["ADD"]."</a> <a href=\"index.php?page=news&act=edit&id=".$rows["id"]."\">".$language["EDIT"]."</a>";
$viewnews[$i]["delete_news"] = " <a onclick=\"return confirm('". str_replace("'","\'",$language["DELETE_CONFIRM"])."')\" href=\"index.php?page=news&act=del&id=".$rows["id"]."\">".$language["DELETE"]."</a>";
$viewnews[$i]["user_posted"] = unesc($rows["username"]);
$viewnews[$i]["posted_date"] = date("d/m/Y H:i",$rows["news_date"]-$offset);
$viewnews[$i]["news_title"] = unesc($rows["title"]);
$viewnews[$i]["news"] = format_comment($rows["news"]);
$i++;
}
$viewnewstpl -> set("viewnews", $viewnews);
?>