1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-22 16:22:58 +02:00

[ticket/10631] Adding an extensions admin

PHPBB3-10631
This commit is contained in:
Michael Cullum
2012-02-29 21:23:50 +00:00
committed by Unknown Bliss
parent 1128ff1e58
commit 5e6b4c7192
11 changed files with 570 additions and 0 deletions

View File

@@ -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()
{
}
}