1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

82 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\log;
/**
* Null logger
*/
class null implements log_interface
{
/**
2013-07-28 21:10:17 -05:00
* {@inheritdoc}
*/
public function is_enabled($type = '')
{
return false;
}
/**
2013-07-28 21:10:17 -05:00
* {@inheritdoc}
*/
public function disable($type = '')
{
}
/**
2013-07-28 21:10:17 -05:00
* {@inheritdoc}
*/
public function enable($type = '')
{
}
/**
2013-07-28 21:10:17 -05:00
* {@inheritdoc}
*/
public function add($mode, $user_id, $log_ip, $log_operation, $log_time = false, $additional_data = array())
{
return false;
}
/**
* {@inheritdoc}
*/
public function delete($mode, $conditions = array())
{
}
/**
2013-07-28 21:10:17 -05:00
* {@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();
}
/**
2013-07-28 21:10:17 -05:00
* {@inheritdoc}
*/
public function get_log_count()
{
return 0;
}
/**
2013-07-28 21:10:17 -05:00
* {@inheritdoc}
*/
public function get_valid_offset()
{
return 0;
}
}