aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/info/acp_extensions.php
diff options
context:
space:
mode:
authorMichael Cullum <unknownbliss@phpbbdevelopers.net>2012-02-29 21:23:50 +0000
committerUnknown Bliss <m@michaelcullum.com>2012-09-01 15:04:33 +0100
commit5e6b4c7192a80dc29382ad06976e9ce6d5c16efd (patch)
tree4fcabfb0a1446f87a591de9f5234e2710ceb8582 /phpBB/includes/acp/info/acp_extensions.php
parent1128ff1e580361db7f7ecc72d496fdd347cbe0f2 (diff)
downloadforums-5e6b4c7192a80dc29382ad06976e9ce6d5c16efd.tar
forums-5e6b4c7192a80dc29382ad06976e9ce6d5c16efd.tar.gz
forums-5e6b4c7192a80dc29382ad06976e9ce6d5c16efd.tar.bz2
forums-5e6b4c7192a80dc29382ad06976e9ce6d5c16efd.tar.xz
forums-5e6b4c7192a80dc29382ad06976e9ce6d5c16efd.zip
[ticket/10631] Adding an extensions admin
PHPBB3-10631
Diffstat (limited to 'phpBB/includes/acp/info/acp_extensions.php')
-rw-r--r--phpBB/includes/acp/info/acp_extensions.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/phpBB/includes/acp/info/acp_extensions.php b/phpBB/includes/acp/info/acp_extensions.php
new file mode 100644
index 0000000000..87e30bf25d
--- /dev/null
+++ b/phpBB/includes/acp/info/acp_extensions.php
@@ -0,0 +1,34 @@
+<?php
+/**
+*
+* @package acp
+* @copyright (c) 2012 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+/**
+* @package module_install
+*/
+class acp_extensions_info
+{
+ function module()
+ {
+ return array(
+ 'filename' => 'acp_extensions',
+ 'title' => 'ACP_EXTENSIONS',
+ 'version' => '1.0.0',
+ 'modes' => array(
+ 'main' => array('title' => 'ACP_EXTENSIONS', 'auth' => 'acl_a_extensions', 'cat' => array('ACP_CAT_SYSTEM')),
+ ),
+ );
+ }
+
+ function install()
+ {
+ }
+
+ function uninstall()
+ {
+ }
+}