Файл: apwa/includes/acp/info/acp_ads.php
Строк: 27
<?php
/**
*
* @package phpBB3 Advertisement Management
* @version $Id: acp_ads.php 61 2008-09-15 19:43:45Z exreaction@gmail.com $
* @copyright (c) 2008 EXreaction, Lithium Studios
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* @package module_install
*/
class acp_ads_info
{
function module()
{
return array(
'filename' => 'acp_ads',
'title' => 'ACP_ADVERTISEMENT_MANAGEMENT',
'version' => '1.0.0',
'modes' => array(
'default' => array('title' => 'ACP_ADVERTISEMENT_MANAGEMENT', 'auth' => 'acl_a_ads', 'cat' => array('ACP_BOARD_CONFIGURATION')),
),
);
}
function install()
{
}
function uninstall()
{
}
}
?>