diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-05-03 15:59:06 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-05-29 02:14:38 +0200 |
| commit | d3f65cd66e4c3cbf2a8af45a7db99b40d0153214 (patch) | |
| tree | 1bd3499e6ce936d887dde32543b046031f470b08 /phpBB/includes/acp/info/acp_contact.php | |
| parent | deee3be9ef34e3760428291d165aee33b05a68c3 (diff) | |
| download | forums-d3f65cd66e4c3cbf2a8af45a7db99b40d0153214.tar forums-d3f65cd66e4c3cbf2a8af45a7db99b40d0153214.tar.gz forums-d3f65cd66e4c3cbf2a8af45a7db99b40d0153214.tar.bz2 forums-d3f65cd66e4c3cbf2a8af45a7db99b40d0153214.tar.xz forums-d3f65cd66e4c3cbf2a8af45a7db99b40d0153214.zip | |
[ticket/10073] Add ACP module to add bbcode text for contact admin info
PHPBB3-10073
Diffstat (limited to 'phpBB/includes/acp/info/acp_contact.php')
| -rw-r--r-- | phpBB/includes/acp/info/acp_contact.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/phpBB/includes/acp/info/acp_contact.php b/phpBB/includes/acp/info/acp_contact.php new file mode 100644 index 0000000000..b8326f34ea --- /dev/null +++ b/phpBB/includes/acp/info/acp_contact.php @@ -0,0 +1,26 @@ +<?php +/** +* +* @package acp +* @copyright (c) 2014 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @package module_install +*/ +class acp_contact_info +{ + public function module() + { + return array( + 'filename' => 'acp_contact', + 'title' => 'ACP_CONTACT', + 'version' => '1.0.0', + 'modes' => array( + 'contact' => array('title' => 'ACP_CONTACT_SETTINGS', 'auth' => 'acl_a_board', 'cat' => array('ACP_BOARD_CONFIGURATION')), + ), + ); + } +} |
