about summary refs log tree commit diff stats
path: root/update/plugin/phpBB3/trunk/root/includes/acp/info/acp_instadisc.php
blob: 5692f6c24a71741bfb4d06d107372251d39439b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
*
* @package acp
* @version $Id: v3_modules.xml 52 2008-08-05 18:46:00Z hatkirby $
* @copyright (c) 2008 Starla Insigna
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

/**
* @package module_install
*/
class acp_instadisc_info
{
	function module()
	{
		return array(
				'filename'	=> 'acp_instadisc',
				'title'		=> 'ACP_INSTADISC',
				'version'	=> '1.0.0',
				'modes'		=> array(
								'instadisc'	=> array(
												'title' => 'INSTADISC',
												'auth' => 'acl_a_board && acl_a_server',
												'cat' => array('ACP_AUTOMATION')
											)
							)
				);
	}

	function install()
	{
	}

	function uninstall()
	{
	}
}