source: branches/posledni/forum/includes/acp/info/acp_styles.php

Last change on this file was 400, checked in by george, 16 years ago
  • Přidáno: Nové forum phpBB 3.
File size: 959 bytes
Line 
1<?php
2/**
3*
4* @package acp
5* @version $Id: acp_styles.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_styles_info
15{
16 function module()
17 {
18 return array(
19 'filename' => 'acp_styles',
20 'title' => 'ACP_CAT_STYLES',
21 'version' => '1.0.0',
22 'modes' => array(
23 'style' => array('title' => 'ACP_STYLES', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_MANAGEMENT')),
24 'template' => array('title' => 'ACP_TEMPLATES', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_COMPONENTS')),
25 'theme' => array('title' => 'ACP_THEMES', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_COMPONENTS')),
26 'imageset' => array('title' => 'ACP_IMAGESETS', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_COMPONENTS')),
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.