mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 12:03:21 +01:00
37 lines
548 B
PHP
37 lines
548 B
PHP
|
<?php
|
||
|
/**
|
||
|
*
|
||
|
* @package acp
|
||
|
* @version $Id$
|
||
|
* @copyright (c) 2005 phpBB Group
|
||
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @package module_install
|
||
|
*/
|
||
|
class acp_profile_info
|
||
|
{
|
||
|
function module()
|
||
|
{
|
||
|
return array(
|
||
|
'filename' => 'acp_profile',
|
||
|
'title' => 'ACP_CUSTOM_PROFILE_FIELDS',
|
||
|
'version' => '1.0.0',
|
||
|
'modes' => array(
|
||
|
'profile' => array('title' => 'ACP_CUSTOM_PROFILE_FIELDS', 'auth' => 'acl_a_profile'),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
function install()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
function uninstall()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|