Start B3P v2 :-D

This commit is contained in:
Christian
2009-09-03 12:48:45 +00:00
parent fb193c0f92
commit 6964ff8f51
86 changed files with 4491 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<?php
/**
*
* @package Board3 Portal v2
* @version $Id$
* @copyright (c) Board3 Group ( www.board3.de )
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* @package module_install
*/
class acp_portal_blocks_info
{
function module()
{
return array(
'filename' => 'acp_portal_blocks',
'title' => 'ACP_PORTAL_BLOCKS',
'version' => '2.0.0',
'modes' => array(
'blocks' => array('title' => 'ACP_PORTAL_MANAGE_BLOCKS', 'auth' => 'acl_a_portal', 'cat' => array('ACP_PORTAL')),
),
);
}
function install()
{
}
function uninstall()
{
}
}
?>

View File

@@ -0,0 +1,42 @@
<?php
/**
*
* @package Board3 Portal v2
* @version $Id$
* @copyright (c) Board3 Group ( www.board3.de )
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* @package module_install
*/
class acp_portal_config_info
{
function module()
{
return array(
'filename' => 'acp_portal_config',
'title' => 'ACP_PORTAL_INFO',
'version' => '2.0.0',
'modes' => array(
'config' => array('title' => 'ACP_PORTAL_GENERAL_INFO', 'auth' => 'acl_a_portal', 'cat' => array('ACP_PORTAL')),
),
);
}
function install()
{
}
function uninstall()
{
}
}
?>

View File

@@ -0,0 +1,42 @@
<?php
/**
*
* @package Board3 Portal v2
* @version $Id$
* @copyright (c) Board3 Group ( www.board3.de )
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* @package module_install
*/
class acp_portal_links_info
{
function module()
{
return array(
'filename' => 'acp_portal_links',
'title' => 'ACP_PORTAL_LINKS',
'version' => '2.0.0',
'modes' => array(
'links' => array('title' => 'ACP_PORTAL_MANAGE_LINKS', 'auth' => 'acl_a_portal', 'cat' => array('ACP_PORTAL')),
),
);
}
function install()
{
}
function uninstall()
{
}
}
?>