|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace XoopsModules\Newbb; |
|
4
|
|
|
|
|
5
|
|
|
// |
|
6
|
|
|
// ------------------------------------------------------------------------ // |
|
7
|
|
|
// XOOPS - PHP Content Management System // |
|
8
|
|
|
// Copyright (c) 2000-2020 XOOPS.org // |
|
9
|
|
|
// <https://xoops.org> // |
|
10
|
|
|
// ------------------------------------------------------------------------ // |
|
11
|
|
|
// This program is free software; you can redistribute it and/or modify // |
|
12
|
|
|
// it under the terms of the GNU General Public License as published by // |
|
13
|
|
|
// the Free Software Foundation; either version 2 of the License, or // |
|
14
|
|
|
// (at your option) any later version. // |
|
15
|
|
|
// // |
|
16
|
|
|
// You may not change or alter any portion of this comment or credits // |
|
17
|
|
|
// of supporting developers from this source code or any supporting // |
|
18
|
|
|
// source code which is considered copyrighted (c) material of the // |
|
19
|
|
|
// original comment or credit authors. // |
|
20
|
|
|
// // |
|
21
|
|
|
// This program is distributed in the hope that it will be useful, // |
|
22
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of // |
|
23
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // |
|
24
|
|
|
// GNU General Public License for more details. // |
|
25
|
|
|
// // |
|
26
|
|
|
// You should have received a copy of the GNU General Public License // |
|
27
|
|
|
// along with this program; if not, write to the Free Software // |
|
28
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // |
|
29
|
|
|
// ------------------------------------------------------------------------ // |
|
30
|
|
|
// Author: phppp (D.J., [email protected]) // |
|
31
|
|
|
// URL: https://xoops.org // |
|
32
|
|
|
// Project: Article Project // |
|
33
|
|
|
// ------------------------------------------------------------------------ // |
|
34
|
|
|
|
|
35
|
|
|
use XoopsModules\Newbb; |
|
36
|
|
|
|
|
37
|
|
|
require_once __DIR__ . '/Read.php'; |
|
38
|
|
|
|
|
39
|
|
|
/** |
|
40
|
|
|
* A handler for read/unread handling |
|
41
|
|
|
* |
|
42
|
|
|
* @package newbb |
|
43
|
|
|
* |
|
44
|
|
|
* @author D.J. (phppp, http://xoopsforge.com) |
|
45
|
|
|
* @copyright copyright (c) 2005 XOOPS.org |
|
46
|
|
|
*/ |
|
47
|
|
|
class Readtopic extends Newbb\Read |
|
48
|
|
|
{ |
|
49
|
|
|
public function __construct() |
|
50
|
|
|
{ |
|
51
|
|
|
parent::__construct(); |
|
52
|
|
|
//$this->initVar('forum_id', XOBJ_DTYPE_INT); |
|
53
|
|
|
} |
|
54
|
|
|
} |
|
55
|
|
|
|