source: trunk/forum/includes/acp/info/acp_permission_roles.php

Last change on this file was 400, checked in by george, 16 years ago
  • Přidáno: Nové forum phpBB 3.
File size: 1.1 KB
Line 
1<?php
2/**
3*
4* @package acp
5* @version $Id: acp_permission_roles.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_permission_roles_info
15{
16 function module()
17 {
18 return array(
19 'filename' => 'acp_permission_roles',
20 'title' => 'ACP_PERMISSION_ROLES',
21 'version' => '1.0.0',
22 'modes' => array(
23 'admin_roles' => array('title' => 'ACP_ADMIN_ROLES', 'auth' => 'acl_a_roles && acl_a_aauth', 'cat' => array('ACP_PERMISSION_ROLES')),
24 'user_roles' => array('title' => 'ACP_USER_ROLES', 'auth' => 'acl_a_roles && acl_a_uauth', 'cat' => array('ACP_PERMISSION_ROLES')),
25 'mod_roles' => array('title' => 'ACP_MOD_ROLES', 'auth' => 'acl_a_roles && acl_a_mauth', 'cat' => array('ACP_PERMISSION_ROLES')),
26 'forum_roles' => array('title' => 'ACP_FORUM_ROLES', 'auth' => 'acl_a_roles && acl_a_fauth', 'cat' => array('ACP_PERMISSION_ROLES')),
27 ),
28 );
29 }
30
31 function install()
32 {
33 }
34
35 function uninstall()
36 {
37 }
38}
39
40?>
Note: See TracBrowser for help on using the repository browser.