source: forum/includes/acp/info/acp_database.php@ 651

Last change on this file since 651 was 651, checked in by aleg, 15 years ago

Změněná cesta k GM a Char logům pro realmy 4 a 7.

File size: 719 bytes
Line 
1<?php
2/**
3*
4* @package acp
5* @version $Id: acp_database.php 8479 2008-03-29 00:22:48Z naderman $
6* @copyright (c) 2005 phpBB Group
7* @license http://opensource.org/licenses/gpl-license.php GNU Public License
8*
9*/
10
11/**
12* @package module_install
13*/
14class acp_database_info
15{
16 function module()
17 {
18 return array(
19 'filename' => 'acp_database',
20 'title' => 'ACP_DATABASE',
21 'version' => '1.0.0',
22 'modes' => array(
23 'backup' => array('title' => 'ACP_BACKUP', 'auth' => 'acl_a_backup', 'cat' => array('ACP_CAT_DATABASE')),
24 'restore' => array('title' => 'ACP_RESTORE', 'auth' => 'acl_a_backup', 'cat' => array('ACP_CAT_DATABASE')),
25 ),
26 );
27 }
28
29 function install()
30 {
31 }
32
33 function uninstall()
34 {
35 }
36}
37
38?>
Note: See TracBrowser for help on using the repository browser.