diff options
Diffstat (limited to 'phpBB/includes/ucp/info/ucp_profile.php')
-rw-r--r-- | phpBB/includes/ucp/info/ucp_profile.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/info/ucp_profile.php b/phpBB/includes/ucp/info/ucp_profile.php new file mode 100644 index 0000000000..552e82b61e --- /dev/null +++ b/phpBB/includes/ucp/info/ucp_profile.php @@ -0,0 +1,40 @@ +<?php +/** +* +* @package ucp +* @version $Id$ +* @copyright (c) 2005 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +/** +* @package module_install +*/ +class ucp_profile_info +{ + function module() + { + return array( + 'filename' => 'ucp_profile', + 'title' => 'UCP_PROFILE', + 'version' => '1.0.0', + 'modes' => array( + 'reg_details' => array('title' => 'UCP_PROFILE_REG_DETAILS', 'auth' => ''), + 'profile_info' => array('title' => 'UCP_PROFILE_PROFILE_INFO', 'auth' => ''), + 'signature' => array('title' => 'UCP_PROFILE_SIGNATURE', 'auth' => ''), + 'avatar' => array('title' => 'UCP_PROFILE_AVATAR', 'auth' => ''), + ), + ); + } + + function install() + { + } + + function uninstall() + { + } +} + +?>
\ No newline at end of file |