mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-23 19:45:10 +01:00
- fix module system (sometimes the layout is broken due to falsly deactivated categories) - auth updates (setting permissions) - fix "category jumping" bug in acp - u_action is defined by the module itself git-svn-id: file:///svn/phpbb/trunk@5558 89ea8834-ac86-4346-8a33-228a782c2dd0
170 lines
4.7 KiB
PHP
170 lines
4.7 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @package acp
|
|
* @version $Id$
|
|
* @copyright (c) 2005 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @package acp
|
|
*/
|
|
class acp_logs
|
|
{
|
|
var $u_action;
|
|
|
|
function main($id, $mode)
|
|
{
|
|
global $db, $user, $auth, $template, $cache;
|
|
global $config, $SID, $phpbb_root_path, $phpbb_admin_path, $phpEx;
|
|
|
|
$user->add_lang('mcp');
|
|
|
|
// Set up general vars
|
|
$action = request_var('action', '');
|
|
$forum_id = request_var('f', 0);
|
|
$start = request_var('start', 0);
|
|
$deletemark = (isset($_POST['delmarked'])) ? true : false;
|
|
$deleteall = (isset($_POST['delall'])) ? true : false;
|
|
$marked = request_var('mark', array(0));
|
|
|
|
// Sort keys
|
|
$sort_days = request_var('st', 0);
|
|
$sort_key = request_var('sk', 't');
|
|
$sort_dir = request_var('sd', 'd');
|
|
|
|
$this->tpl_name = 'acp_logs';
|
|
$this->log_type = constant('LOG_' . strtoupper($mode));
|
|
|
|
// Delete entries if requested and able
|
|
if (($deletemark || $deleteall) && $auth->acl_get('a_clearlogs'))
|
|
{
|
|
$where_sql = '';
|
|
if ($deletemark && $marked)
|
|
{
|
|
$sql_in = array();
|
|
foreach ($marked as $mark)
|
|
{
|
|
$sql_in[] = $mark;
|
|
}
|
|
$where_sql = ' AND log_id IN (' . implode(', ', $sql_in) . ')';
|
|
unset($sql_in);
|
|
}
|
|
|
|
if ($where_sql || $deleteall)
|
|
{
|
|
$sql = 'DELETE FROM ' . LOG_TABLE . "
|
|
WHERE log_type = {$this->log_type}
|
|
$where_sql";
|
|
$db->sql_query($sql);
|
|
|
|
add_log('admin', 'LOG_CLEAR_' . strtoupper($mode));
|
|
}
|
|
}
|
|
|
|
// Sorting
|
|
$limit_days = array(0 => $user->lang['ALL_ENTRIES'], 1 => $user->lang['1_DAY'], 7 => $user->lang['7_DAYS'], 14 => $user->lang['2_WEEKS'], 30 => $user->lang['1_MONTH'], 90 => $user->lang['3_MONTHS'], 180 => $user->lang['6_MONTHS'], 364 => $user->lang['1_YEAR']);
|
|
$sort_by_text = array('u' => $user->lang['SORT_USERNAME'], 't' => $user->lang['SORT_DATE'], 'i' => $user->lang['SORT_IP'], 'o' => $user->lang['SORT_ACTION']);
|
|
$sort_by_sql = array('u' => 'l.user_id', 't' => 'l.log_time', 'i' => 'l.log_ip', 'o' => 'l.log_operation');
|
|
|
|
$s_limit_days = $s_sort_key = $s_sort_dir = $u_sort_param = '';
|
|
gen_sort_selects($limit_days, $sort_by_text, $sort_days, $sort_key, $sort_dir, $s_limit_days, $s_sort_key, $s_sort_dir, $u_sort_param);
|
|
|
|
// Define where and sort sql for use in displaying logs
|
|
$sql_where = ($sort_days) ? (time() - ($sort_days * 86400)) : 0;
|
|
$sql_sort = $sort_by_sql[$sort_key] . ' ' . (($sort_dir == 'd') ? 'DESC' : 'ASC');
|
|
|
|
$l_title = $user->lang['ACP_' . strtoupper($mode) . '_LOGS'];
|
|
$l_title_explain = $user->lang['ACP_' . strtoupper($mode) . '_LOGS_EXPLAIN'];
|
|
|
|
$this->page_title = $l_title;
|
|
|
|
// Define forum list if we're looking @ mod logs
|
|
if ($mode == 'mod')
|
|
{
|
|
$forum_box = '<option value="0">' . $user->lang['ALL_FORUMS'] . '</option>' . make_forum_select($forum_id);
|
|
|
|
$template->assign_vars(array(
|
|
'S_SHOW_FORUMS' => true,
|
|
'S_FORUM_BOX' => $forum_box)
|
|
);
|
|
}
|
|
|
|
// Grab log data
|
|
$log_data = array();
|
|
$log_count = 0;
|
|
view_log($mode, $log_data, $log_count, $config['topics_per_page'], $start, $forum_id, 0, 0, $sql_where, $sql_sort);
|
|
|
|
$template->assign_vars(array(
|
|
'L_TITLE' => $l_title,
|
|
'L_EXPLAIN' => $l_title_explain,
|
|
'U_ACTION' => $this->u_action,
|
|
|
|
'S_ON_PAGE' => on_page($log_count, $config['topics_per_page'], $start),
|
|
'PAGINATION' => generate_pagination($this->u_action . "&$u_sort_param", $log_count, $config['topics_per_page'], $start, true),
|
|
|
|
'S_LIMIT_DAYS' => $s_limit_days,
|
|
'S_SORT_KEY' => $s_sort_key,
|
|
'S_SORT_DIR' => $s_sort_dir,
|
|
'S_CLEARLOGS' => $auth->acl_get('a_clearlogs'),
|
|
|
|
)
|
|
);
|
|
|
|
foreach ($log_data as $row)
|
|
{
|
|
$data = array();
|
|
|
|
$checks = array('viewtopic', 'viewlogs', 'viewforum');
|
|
foreach ($checks as $check)
|
|
{
|
|
if (isset($row[$check]) && $row[$check])
|
|
{
|
|
$data[] = '<a href="' . $row[$check] . '">' . $user->lang['LOGVIEW_' . strtoupper($check)] . '</a>';
|
|
}
|
|
}
|
|
|
|
$template->assign_block_vars('log', array(
|
|
'USERNAME' => $row['username'],
|
|
'IP' => $row['ip'],
|
|
'DATE' => $user->format_date($row['time']),
|
|
'ACTION' => $row['action'],
|
|
'DATA' => (sizeof($data)) ? implode(' | ', $data) : '',
|
|
'ID' => $row['id'],
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @package module_install
|
|
*/
|
|
class acp_logs_info
|
|
{
|
|
function module()
|
|
{
|
|
return array(
|
|
'filename' => 'acp_logs',
|
|
'title' => 'ACP_LOGGING',
|
|
'version' => '1.0.0',
|
|
'modes' => array(
|
|
'admin' => array('title' => 'ACP_ADMIN_LOGS', 'auth' => 'acl_a_viewlogs'),
|
|
'mod' => array('title' => 'ACP_MOD_LOGS', 'auth' => 'acl_a_viewlogs'),
|
|
'critical' => array('title' => 'ACP_CRITICAL_LOGS', 'auth' => 'acl_a_viewlogs'),
|
|
),
|
|
);
|
|
}
|
|
|
|
function install()
|
|
{
|
|
}
|
|
|
|
function uninstall()
|
|
{
|
|
}
|
|
}
|
|
|
|
?>
|