diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2003-03-04 17:57:01 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2003-03-04 17:57:01 +0000 |
commit | 77c9d2c275838a54053094b856ac2d2c61ecac3f (patch) | |
tree | 4f1ef6265af258bf215f277af388b8ccc1f581d2 | |
parent | 3c42fb0501719da10bd5e8cb4b7548fa3e253c92 (diff) | |
download | forums-77c9d2c275838a54053094b856ac2d2c61ecac3f.tar forums-77c9d2c275838a54053094b856ac2d2c61ecac3f.tar.gz forums-77c9d2c275838a54053094b856ac2d2c61ecac3f.tar.bz2 forums-77c9d2c275838a54053094b856ac2d2c61ecac3f.tar.xz forums-77c9d2c275838a54053094b856ac2d2c61ecac3f.zip |
<crappy british accent>You are the weakest link...goodbye!</crappy british
accent>
(I think I watch too much Game Show Network)
git-svn-id: file:///svn/phpbb/trunk@3593 89ea8834-ac86-4346-8a33-228a782c2dd0
-rwxr-xr-x | phpBB/includes/ucp/usercp_modules.php | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/phpBB/includes/ucp/usercp_modules.php b/phpBB/includes/ucp/usercp_modules.php deleted file mode 100755 index 6994e7de59..0000000000 --- a/phpBB/includes/ucp/usercp_modules.php +++ /dev/null @@ -1,58 +0,0 @@ -<?php -/*************************************************************************** - * usercp_modules.php - * ------------------- - * begin : Tuesday, Jan 14, 2003 - * copyright : (C) 2001 The phpBB Group - * email : support@phpbb.com - * - * $Id$ - * - * - ***************************************************************************/ - -/*************************************************************************** - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - ***************************************************************************/ - -// -// This file sets up basic module information for the user control panel -// any files added to the UCP must be added to this file inorder for them to -// show up in the UCP menu. -// - -$ucp_modules['UCP_Main']['UCP_Main'] = ''; -$ucp_modules['UCP_Main']['Default'] = ''; - -$ucp_modules['UCP_Profile']['Default'] = 'inc=ucp/usercp_profile.' . $phpEx . "&mode=editprofile&u=" . $user->data['user_id']; -$ucp_modules['UCP_Profile']['Registration_information'] = 'inc=ucp/usercp_profile.' . $phpEx . "&mode=editprofile&u=" . $user->data['user_id']; -$ucp_modules['UCP_Profile']['Preferances'] = 'inc=ucp/usercp_profile.' . $phpEx . "&mode=preferancese&u=" . $user->data['user_id']; -$ucp_modules['UCP_Profile']['Avatar_settings'] = 'inc=ucp/usercp_avatar.' . $phpEx . "&u=" . $user->data['user_id']; -$ucp_modules['UCP_Profile']['Signature_settings'] = 'inc=ucp/usercp_profile.' . $phpEx . "&mode=signaturee&u=" . $user->data['user_id']; - -$ucp_modules['UCP_Lists']['Default'] = 'inc=ucp/usercp_lists.' . $phpEx . "&mode=settings"; -$ucp_modules['UCP_Lists']['Lists_settings'] = 'inc=ucp/usercp_lists.' . $phpEx . "&mode=settings"; -$ucp_modules['UCP_Lists']['While_list'] = 'inc=ucp/usercp_lists.' . $phpEx . "&mode=white"; -$ucp_modules['UCP_Lists']['Black_list'] = 'inc=ucp/usercp_lists.' . $phpEx . "amp;mode=black"; - -$ucp_modules['UCP_Priv_messages']['Default'] = ''; -$ucp_modules['UCP_Priv_messages']['Private_messages'] = ''; - - -// -// This bit of code prints out the module tabs on the UCP pages, each UCP page -// must call this file to print out the tabs. -// -// Also note that each user cp file handles it own sub-section displays. -// - -foreach($ucp_modules as $section_title => $sections) -{ - $template->assign_block_vars('ucp_sections', array('U_SECTION' => "ucp.$phpEx$SID&" . $sections['Default'] , - 'SECTION' => $user->lang[$section_title])); -} |