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 |
ucp_pm.php
01 <?php
02 /**
03 * @package ucp
04 * @version $Id$
05 * @copyright (c) 2005 phpBB Group
06 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
07 *
08 */
09
10 /**
11 * @package module_install
12 */
13 class ucp_pm_info
14 {
15 function module()
16 {
17 return array(
18 'filename' => 'ucp_pm',
19 'title' => 'UCP_PM',
20 'version' => '1.0.0',
21 'modes' => array(
22 'view' => array('title' => 'UCP_PM_VIEW', 'auth' => 'cfg_allow_privmsg', 'display' => false, 'cat' => array('UCP_PM')),
23 'compose' => array('title' => 'UCP_PM_COMPOSE', 'auth' => 'cfg_allow_privmsg', 'cat' => array('UCP_PM')),
24 'drafts' => array('title' => 'UCP_PM_DRAFTS', 'auth' => 'cfg_allow_privmsg', 'cat' => array('UCP_PM')),
25 'options' => array('title' => 'UCP_PM_OPTIONS', 'auth' => 'cfg_allow_privmsg', 'cat' => array('UCP_PM')),
26 'popup' => array('title' => 'UCP_PM_POPUP_TITLE', 'auth' => 'cfg_allow_privmsg', 'display' => false, 'cat' => array('UCP_PM')),
27 ),
28 );
29 }
30
31 function install()
32 {
33 }
34
35 function uninstall()
36 {
37 }
38 }
39
40 ?>