aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/info/mcp_warn.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/mcp/info/mcp_warn.php')
-rw-r--r--phpBB/includes/mcp/info/mcp_warn.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/phpBB/includes/mcp/info/mcp_warn.php b/phpBB/includes/mcp/info/mcp_warn.php
new file mode 100644
index 0000000000..f0ebfcec55
--- /dev/null
+++ b/phpBB/includes/mcp/info/mcp_warn.php
@@ -0,0 +1,40 @@
+<?php
+/**
+*
+* @package mcp
+* @version $Id$
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+/**
+* @package module_install
+*/
+class mcp_warn_info
+{
+ function module()
+ {
+ return array(
+ 'filename' => 'mcp_warn',
+ 'title' => 'MCP_WARN',
+ 'version' => '1.0.0',
+ 'modes' => array(
+ 'front' => array('title' => 'MCP_WARN_FRONT', 'auth' => ''),
+ 'list' => array('title' => 'MCP_WARN_LIST', 'auth' => ''),
+ 'warn_user' => array('title' => 'MCP_WARN_USER', 'auth' => ''),
+ 'warn_post' => array('title' => 'MCP_WARN_POST', 'auth' => 'acl_m_,$id'),
+ ),
+ );
+ }
+
+ function install()
+ {
+ }
+
+ function uninstall()
+ {
+ }
+}
+
+?> \ No newline at end of file