forked from XoopsModules25x/news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
246 lines (235 loc) · 11.4 KB
/
archive.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<?php
//
// ------------------------------------------------------------------------ //
// XOOPS - PHP Content Management System //
// Copyright (c) 2000-2016 XOOPS.org //
// <http://xoops.org/> //
// ------------------------------------------------------------------------- //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// //
// You may not change or alter any portion of this comment or credits //
// of supporting developers from this source code or any supporting //
// source code which is considered copyrighted (c) material of the //
// original comment or credit authors. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program; if not, write to the Free Software //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //
// ------------------------------------------------------------------------ //
/*
* Display a list of all the published articles by month
*
* This page is called from the module's main menu.
* It will shows a list of all the articles by month. We use the module's
* option named "restrictindex" to show or hide stories according
* to users permissions
*
* @package News
* @author Xoops Modules Dev Team
* @copyright (c) XOOPS Project (http://xoops.org)
*
* Parameters received by this page :
* @page_param int year Optional, the starting year
* @page_param int month Optional, the starting month
*
* @page_title "News Archives" - Year - Month - Module's name
*
* @template_name news_archive.html
*
* Template's variables :
* @template_var array years Contains all the years we have information for
* Structure :
* number int Year (2004 for example)
* months array moths in the year (months when we have some articles)
* Structure :
* string string Month's name
* number int Month's number (between 1 and 12)
* @template_var boolean show_articles true or false
* @template_var string lang_articles Fixed text "Articles"
* @template_var array currentmonth Label of each month (from january to december)
* @template_var int currentyear Starting year
* @template_var string lang_actions Fixed text "Actions"
* @template_var string lang_date Fixed text "Date"
* @template_var string lang_views Fixed text "Views"
* @template_var array stories Contains all the stories to display
* Structure :
* title string Contains a link to see the topic and a link (with the story's title) to read the full story
* counter int Number of views for this article
* date string Article's publish date
* print_link string A link to the story's printable version
* mail_link string A mailto link to mail the story to a friend
* @template_var string lang_printer Fixed text "Printer Friendly Page"
* @template_var string lang_sendstory Fixed text "Send this Story to a Friend"
* @template_var string lang_storytotal Text "There are xx article(s) in total"
*/
######################################################################
# Original version:
# [11-may-2001] Kenneth Lee - http://www.nexgear.com/
######################################################################
include dirname(dirname(__DIR__)) . '/mainfile.php';
$xoopsOption['template_main'] = 'news_archive.tpl';
include_once XOOPS_ROOT_PATH . '/header.php';
include_once XOOPS_ROOT_PATH . '/modules/news/class/class.newsstory.php';
include_once XOOPS_ROOT_PATH . '/language/' . $xoopsConfig['language'] . '/calendar.php';
include_once XOOPS_ROOT_PATH . '/modules/news/include/functions.php';
$lastyear = 0;
$lastmonth = 0;
$months_arr = array(
1 => _CAL_JANUARY,
2 => _CAL_FEBRUARY,
3 => _CAL_MARCH,
4 => _CAL_APRIL,
5 => _CAL_MAY,
6 => _CAL_JUNE,
7 => _CAL_JULY,
8 => _CAL_AUGUST,
9 => _CAL_SEPTEMBER,
10 => _CAL_OCTOBER,
11 => _CAL_NOVEMBER,
12 => _CAL_DECEMBER
);
$fromyear = isset($_GET['year']) ? (int)$_GET['year'] : 0;
$frommonth = isset($_GET['month']) ? (int)$_GET['month'] : 0;
$pgtitle = '';
if ($fromyear && $frommonth) {
$pgtitle = sprintf(' - %d - %d', $fromyear, $frommonth);
}
$infotips = news_getmoduleoption('infotips');
$restricted = news_getmoduleoption('restrictindex');
$dateformat = news_getmoduleoption('dateformat');
if ($dateformat === '') {
$dateformat = 'm';
}
$myts = MyTextSanitizer::getInstance();
$xoopsTpl->assign('xoops_pagetitle', $myts->htmlSpecialChars(_NW_NEWSARCHIVES) . $pgtitle . ' - ' . $xoopsModule->name('s'));
$useroffset = '';
if (is_object($xoopsUser)) {
$timezone = $xoopsUser->timezone();
if (isset($timezone)) {
$useroffset = $xoopsUser->timezone();
} else {
$useroffset = $xoopsConfig['default_TZ'];
}
}
$result = $xoopsDB->query('SELECT published FROM '
. $xoopsDB->prefix('news_stories')
. ' WHERE (published>0 AND published<='
. time()
. ') AND (expired = 0 OR expired <= '
. time()
. ') ORDER BY published DESC');
if (!$result) {
echo _ERRORS;
exit();
} else {
$years = array();
$months = array();
$i = 0;
while (list($time) = $xoopsDB->fetchRow($result)) {
$time = formatTimestamp($time, 'mysql', $useroffset);
if (preg_match('/(\d{4})-(\d{1,2})-(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})/', $time, $datetime)) {
$this_year = (int)$datetime[1];
$this_month = (int)$datetime[2];
if (empty($lastyear)) {
$lastyear = $this_year;
}
if ($lastmonth == 0) {
$lastmonth = $this_month;
$months[$lastmonth]['string'] = $months_arr[$lastmonth];
$months[$lastmonth]['number'] = $lastmonth;
}
if ($lastyear != $this_year) {
$years[$i]['number'] = $lastyear;
$years[$i]['months'] = $months;
$months = array();
$lastmonth = 0;
$lastyear = $this_year;
++$i;
}
if ($lastmonth != $this_month) {
$lastmonth = $this_month;
$months[$lastmonth]['string'] = $months_arr[$lastmonth];
$months[$lastmonth]['number'] = $lastmonth;
}
}
}
$years[$i]['number'] = $this_year;
$years[$i]['months'] = $months;
$xoopsTpl->assign('years', $years);
}
if ($fromyear != 0 && $frommonth != 0) {
$xoopsTpl->assign('show_articles', true);
$xoopsTpl->assign('lang_articles', _NW_ARTICLES);
$xoopsTpl->assign('currentmonth', $months_arr[$frommonth]);
$xoopsTpl->assign('currentyear', $fromyear);
$xoopsTpl->assign('lang_actions', _NW_ACTIONS);
$xoopsTpl->assign('lang_date', _NW_DATE);
$xoopsTpl->assign('lang_views', _NW_VIEWS);
// must adjust the selected time to server timestamp
$timeoffset = $useroffset - $xoopsConfig['server_TZ'];
$monthstart = mktime(0 - $timeoffset, 0, 0, $frommonth, 1, $fromyear);
$monthend = mktime(23 - $timeoffset, 59, 59, $frommonth + 1, 0, $fromyear);
$monthend = ($monthend > time()) ? time() : $monthend;
$count = 0;
$news = new NewsStory();
$storyarray = $news->getArchive($monthstart, $monthend, $restricted);
$count = count($storyarray);
if (is_array($storyarray) && $count > 0) {
foreach ($storyarray as $article) {
$story = array();
$htmltitle = '';
if ($infotips > 0) {
$story['infotips'] = news_make_infotips($article->hometext());
$htmltitle = ' title="' . $story['infotips'] . '"';
}
$story['title'] = "<a href='"
. XOOPS_URL
. '/modules/news/index.php?storytopic='
. $article->topicid()
. "'>"
. $article->topic_title()
. "</a>: <a href='"
. XOOPS_URL
. '/modules/news/article.php?storyid='
. $article->storyid()
. "'"
. $htmltitle
. '>'
. $article->title()
. '</a>';
$story['counter'] = $article->counter();
$story['date'] = formatTimestamp($article->published(), $dateformat, $useroffset);
$story['print_link'] = XOOPS_URL . '/modules/news/print.php?storyid=' . $article->storyid();
$story['mail_link'] = 'mailto:?subject='
. sprintf(_NW_INTARTICLE, $xoopsConfig['sitename'])
. '&body='
. sprintf(_NW_INTARTFOUND, $xoopsConfig['sitename'])
. ': '
. XOOPS_URL
. '/modules/'
. $xoopsModule->dirname()
. '/article.php?storyid='
. $article->storyid();
$xoopsTpl->append('stories', $story);
}
}
$xoopsTpl->assign('lang_printer', _NW_PRINTERFRIENDLY);
$xoopsTpl->assign('lang_sendstory', _NW_SENDSTORY);
$xoopsTpl->assign('lang_storytotal', sprintf(_NW_THEREAREINTOTAL, $count));
} else {
$xoopsTpl->assign('show_articles', false);
}
$xoopsTpl->assign('lang_newsarchives', _NW_NEWSARCHIVES);
/**
* Create the meta datas
*/
news_CreateMetaDatas();
include_once XOOPS_ROOT_PATH . '/footer.php';