aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/info
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2014-06-09 17:55:59 +0200
committerNils Adermann <naderman@naderman.de>2014-06-09 17:55:59 +0200
commit7a55594e93eccf8642a11b45922848176ee44a25 (patch)
treef853b44efe766185dba8f006f6c8c502b60b1ce1 /phpBB/includes/acp/info
parent0440d09dc0886f590b7775aca13c4b15a0048599 (diff)
parentb6232aa9b213fbf62f5ce351bc79220daf243cc6 (diff)
downloadforums-7a55594e93eccf8642a11b45922848176ee44a25.tar
forums-7a55594e93eccf8642a11b45922848176ee44a25.tar.gz
forums-7a55594e93eccf8642a11b45922848176ee44a25.tar.bz2
forums-7a55594e93eccf8642a11b45922848176ee44a25.tar.xz
forums-7a55594e93eccf8642a11b45922848176ee44a25.zip
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: (36 commits) [ticket/10073] Fix button descriptions [ticket/10073] Do not check disable boxes by default [ticket/10073] Store values with config_text in the ACP [ticket/10073] Move config values to config_text [ticket/10073] Fix request usage [ticket/10073] Deduplicate template variable names [ticket/10073] Get service from container [ticket/10073] Fix more "Contact Us" strings [ticket/10073] Move template code into the template [ticket/10073] Make contact page available when board is disabled [ticket/10073] Change name of the ACP module [ticket/10073] Deduplicate posting buttons code in ACP [ticket/10073] Use phpbb_validate_email to verify email address [ticket/10073] Add tests for new validate_email() [ticket/10073] Split email validation from email ban and taken checks [ticket/10073] Deduplicate the if statement [ticket/10073] Fallback to board_contact when contact page is disabled [ticket/10073] Remove language string from rebase conflict [ticket/10073] Add ACP module to add bbcode text for contact admin info [ticket/10073] Add new configs to the schema ...
Diffstat (limited to 'phpBB/includes/acp/info')
-rw-r--r--phpBB/includes/acp/info/acp_contact.php26
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')),
+ ),
+ );
+ }
+}