Files
phpbb_board3-portal_tlw/acp/portal_info.php
Marc Alexander fa6c211a87 [ticket/429] Remove upload module
It is no longer functional and does not fit the idea of extensions.

B3P-429
2014-12-01 14:41:49 +01:00

30 lines
708 B
PHP

<?php
/**
*
* @package Board3 Portal v2.1
* @copyright (c) 2013 Board3 Group ( www.board3.de )
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace board3\portal\acp;
/**
* @package module_install
*/
class portal_info
{
public function module()
{
return array(
'filename' => '\board3\portal\acp\portal_module',
'title' => 'ACP_PORTAL',
'version' => '2.0.1-rc1',
'modes' => array(
'config' => array('title' => 'ACP_PORTAL_GENERAL_INFO', 'auth' => 'acl_a_manage_portal', 'cat' => array('ACP_PORTAL')),
'modules' => array('title' => 'ACP_PORTAL_MODULES', 'auth' => 'acl_a_manage_portal', 'cat' => array('ACP_PORTAL')),
),
);
}
}