aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-03 15:59:06 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-29 02:14:38 +0200
commitd3f65cd66e4c3cbf2a8af45a7db99b40d0153214 (patch)
tree1bd3499e6ce936d887dde32543b046031f470b08 /phpBB/phpbb
parentdeee3be9ef34e3760428291d165aee33b05a68c3 (diff)
downloadforums-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/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/contact_admin_acp_module.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/contact_admin_acp_module.php b/phpBB/phpbb/db/migration/data/v310/contact_admin_acp_module.php
new file mode 100644
index 0000000000..bd682e2f7c
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v310/contact_admin_acp_module.php
@@ -0,0 +1,27 @@
+<?php
+/**
+*
+* @package migration
+* @copyright (c) 2014 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+namespace phpbb\db\migration\data\v310;
+
+class contact_admin_acp_module extends \phpbb\db\migration\migration
+{
+ public function update_data()
+ {
+ return array(
+ array('module.add', array(
+ 'acp',
+ 'ACP_BOARD_CONFIGURATION',
+ array(
+ 'module_basename' => 'acp_contact',
+ 'modes' => array('contact'),
+ ),
+ )),
+ );
+ }
+}