Blame Identity/Models/Html/phpBB/3.0.4/includes/mcp/info/mcp_logs.php

d6e8d8
d6e8d8
/**
d6e8d8
*
d6e8d8
* @package mcp
d6e8d8
* @version $Id: mcp_logs.php 8479 2008-03-29 00:22:48Z naderman $
d6e8d8
* @copyright (c) 2005 phpBB Group
d6e8d8
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
d6e8d8
*
d6e8d8
*/
d6e8d8
d6e8d8
/**
d6e8d8
* @package module_install
d6e8d8
*/
d6e8d8
class mcp_logs_info
d6e8d8
{
d6e8d8
	function module()
d6e8d8
	{
d6e8d8
		return array(
d6e8d8
			'filename'	=> 'mcp_logs',
d6e8d8
			'title'		=> 'MCP_LOGS',
d6e8d8
			'version'	=> '1.0.0',
d6e8d8
			'modes'		=> array(
d6e8d8
				'front'			=> array('title' => 'MCP_LOGS_FRONT', 'auth' => 'acl_m_ || aclf_m_', 'cat' => array('MCP_LOGS')),
d6e8d8
				'forum_logs'	=> array('title' => 'MCP_LOGS_FORUM_VIEW', 'auth' => 'acl_m_,$id', 'cat' => array('MCP_LOGS')),
d6e8d8
				'topic_logs'	=> array('title' => 'MCP_LOGS_TOPIC_VIEW', 'auth' => 'acl_m_,$id', 'cat' => array('MCP_LOGS')),
d6e8d8
			),
d6e8d8
		);
d6e8d8
	}
d6e8d8
d6e8d8
	function install()
d6e8d8
	{
d6e8d8
	}
d6e8d8
d6e8d8
	function uninstall()
d6e8d8
	{
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
?>