aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/info
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2012-09-01 16:38:47 -0400
committerDavid King <imkingdavid@gmail.com>2012-09-01 16:38:47 -0400
commit7bf598954c452448c2807428f6517cd75d910f92 (patch)
tree1a8ba768a01b36e8fb1159b996383d935fb8b352 /phpBB/includes/acp/info
parent43190ebecaeadbc8738da9dcb33b9163652fb9f3 (diff)
parent81f7f28cc33d896973c2912097103ea84fa14114 (diff)
downloadforums-7bf598954c452448c2807428f6517cd75d910f92.tar
forums-7bf598954c452448c2807428f6517cd75d910f92.tar.gz
forums-7bf598954c452448c2807428f6517cd75d910f92.tar.bz2
forums-7bf598954c452448c2807428f6517cd75d910f92.tar.xz
forums-7bf598954c452448c2807428f6517cd75d910f92.zip
Merge remote-tracking branch 'unknownbliss/ticket/10631' into develop
Diffstat (limited to 'phpBB/includes/acp/info')
-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..f5953fb1dd
--- /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_GENERAL_TASKS')),
+ ),
+ );
+ }
+
+ function install()
+ {
+ }
+
+ function uninstall()
+ {
+ }
+}