source: trunk/forum/includes/ucp/info/ucp_pm.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.0 KB
Line 
1<?php
2/**
3* @package ucp
4* @version $Id: ucp_pm.php 8479 2008-03-29 00:22:48Z naderman $
5* @copyright (c) 2005 phpBB Group
6* @license http://opensource.org/licenses/gpl-license.php GNU Public License
7*
8*/
9
10/**
11* @package module_install
12*/
13class 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?>
Note: See TracBrowser for help on using the repository browser.