1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-18 22:41:28 +02:00

[ticket/14492] Rename files to help_phpbb and fix css tabbing

PHPBB3-14492
This commit is contained in:
Marc Alexander
2016-01-31 23:49:17 +01:00
parent 6f315da9ab
commit c1035c98e4
5 changed files with 87 additions and 56 deletions

View File

@@ -0,0 +1,34 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
class acp_help_phpbb_info
{
function module()
{
return array(
'filename' => 'acp_help_phpbb',
'title' => 'ACP_SEND_STATISTICS',
'modes' => array(
'help_phpbb' => array('title' => 'ACP_SEND_STATISTICS', 'auth' => 'acl_a_server', 'cat' => array('ACP_SERVER_CONFIGURATION')),
),
);
}
function install()
{
}
function uninstall()
{
}
}