aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/log/null.php
blob: 14b5f65eecee6da8645582a61848db419be9110d (plain)
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
<?php
/**
*
* @package phpbb_log
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

/**
* Null logger
*
* @package phpbb_log
*/
class phpbb_log_null implements phpbb_log_interface
{
	/**
	* {@inheritdoc}
	*/
	public function is_enabled($type = '')
	{
		return false;
	}

	/**
	* {@inheritdoc}
	*/
	public function disable($type = '')
	{
	}

	/**
	* {@inheritdoc}
	*/
	public function enable($type = '')
	{
	}

	/**
	* {@inheritdoc}
	*/
	public function add($mode, $user_id, $log_ip, $log_operation, $log_time = false, $additional_data = array())
	{
		return false;
	}

	/**
	* {@inheritdoc}
	*/
	public function get_logs($mode, $count_logs = true, $limit = 0, $offset = 0, $forum_id = 0, $topic_id = 0, $user_id = 0, $log_time = 0, $sort_by = 'l.log_time DESC', $keywords = '')
	{
		return array();
	}

	/**
	* {@inheritdoc}
	*/
	public function get_log_count()
	{
		return 0;
	}

	/**
	* {@inheritdoc}
	*/
	public function get_valid_offset()
	{
		return 0;
	}
}