Verzeichnisstruktur phpBB-3.0.0
- Veröffentlicht
- 12.12.2007
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
acp_styles.php
01 <?php
02 /**
03 *
04 * @package acp
05 * @version $Id$
06 * @copyright (c) 2005 phpBB Group
07 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
08 *
09 */
10
11 /**
12 * @package module_install
13 */
14 class 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 ?>