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