about summary refs log tree commit diff stats
path: root/update/plugin/phpBB3/trunk/root/includes/acp/info/acp_instadisc.php
diff options
context:
space:
mode:
Diffstat (limited to 'update/plugin/phpBB3/trunk/root/includes/acp/info/acp_instadisc.php')
-rw-r--r--update/plugin/phpBB3/trunk/root/includes/acp/info/acp_instadisc.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/update/plugin/phpBB3/trunk/root/includes/acp/info/acp_instadisc.php b/update/plugin/phpBB3/trunk/root/includes/acp/info/acp_instadisc.php new file mode 100644 index 0000000..5692f6c --- /dev/null +++ b/update/plugin/phpBB3/trunk/root/includes/acp/info/acp_instadisc.php
@@ -0,0 +1,39 @@
1<?php
2/**
3*
4* @package acp
5* @version $Id: v3_modules.xml 52 2008-08-05 18:46:00Z hatkirby $
6* @copyright (c) 2008 Starla Insigna
7* @license http://opensource.org/licenses/gpl-license.php GNU Public License
8*
9*/
10
11/**
12* @package module_install
13*/
14class acp_instadisc_info
15{
16 function module()
17 {
18 return array(
19 'filename' => 'acp_instadisc',
20 'title' => 'ACP_INSTADISC',
21 'version' => '1.0.0',
22 'modes' => array(
23 'instadisc' => array(
24 'title' => 'INSTADISC',
25 'auth' => 'acl_a_board && acl_a_server',
26 'cat' => array('ACP_AUTOMATION')
27 )
28 )
29 );
30 }
31
32 function install()
33 {
34 }
35
36 function uninstall()
37 {
38 }
39}