home *** CD-ROM | disk | FTP | other *** search
- <?php
- /***************************************************************************
- * constants.php
- * -------------------
- * begin : Saturday', Feb 13', 2001
- * copyright : ('C) 2001 The phpBB Group
- * email : support@phpbb.com
- *
- * $Id: constants.php,v 1.47.2.4 2003/06/10 00:39:51 psotfx Exp $
- *
- *
- ***************************************************************************/
- /***************************************************************************
- * phpbb2 forums port version 2.0.5 (c) 2003 - Nuke Cops (http://nukecops.com)
- *
- * Ported by Nuke Cops to phpbb2 standalone 2.0.5 Test
- * and debugging completed by the Elite Nukers and site members.
- *
- * You run this package at your sole risk. Nuke Cops and affiliates cannot
- * be held liable if anything goes wrong. You are advised to test this
- * package on a development system. Backup everything before implementing
- * in a production environment. If something goes wrong, you can always
- * backout and restore your backups.
- *
- * Installing and running this also means you agree to the terms of the AUP
- * found at Nuke Cops.
- *
- * This is version 2.0.5 of the phpbb2 forum port for PHP-Nuke. Work is based
- * on Tom Nitzschner's forum port version 2.0.6. Tom's 2.0.6 port was based
- * on the phpbb2 standalone version 2.0.3. Our version 2.0.5 from Nuke Cops is
- * now reflecting phpbb2 standalone 2.0.5 that fixes some bugs and the
- * invalid_session error message.
- ***************************************************************************/
- /***************************************************************************
- * This file is part of the phpBB2 port to Nuke 6.0 (c) copyright 2002
- * by Tom Nitzschner (tom@toms-home.com)
- * http://bbtonuke.sourceforge.net (or http://www.toms-home.com)
- *
- * As always, make a backup before messing with anything. All code
- * release by me is considered sample code only. It may be fully
- * functual, but you use it at your own risk, if you break it,
- * you get to fix it too. No waranty is given or implied.
- *
- * Please post all questions/request about this port on http://bbtonuke.sourceforge.net first,
- * then on my site. All original header code and copyright messages will be maintained
- * to give credit where credit is due. If you modify this, the only requirement is
- * that you also maintain all original copyright messages. All my work is released
- * under the GNU GENERAL PUBLIC LICENSE. Please see the README for more information.
- *
- ***************************************************************************/
- /***************************************************************************
- *
- * 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.
- *
- ***************************************************************************/
-
- if ( !defined('IN_PHPBB') )
- {
- die("Hacking attempt");
- }
-
- // Debug Level
- //define('DEBUG', 1); // Debugging on
- define('DEBUG', 1); // Debugging off
-
-
- // User Levels <- Do not change the values of USER or ADMIN
- define('DELETED', -1);
- define('ANONYMOUS', 1);
-
- define('USER', 1);
- define('ADMIN', 2);
- define('MOD', 3);
-
-
- // User related
- define('USER_ACTIVATION_NONE', 0);
- define('USER_ACTIVATION_SELF', 1);
- define('USER_ACTIVATION_ADMIN', 2);
-
- define('USER_AVATAR_NONE', 0);
- define('USER_AVATAR_UPLOAD', 1);
- define('USER_AVATAR_REMOTE', 2);
- define('USER_AVATAR_GALLERY', 3);
-
-
- // Group settings
- define('GROUP_OPEN', 0);
- define('GROUP_CLOSED', 1);
- define('GROUP_HIDDEN', 2);
-
-
- // Forum state
- define('FORUM_UNLOCKED', 0);
- define('FORUM_LOCKED', 1);
-
-
- // Topic status
- define('TOPIC_UNLOCKED', 0);
- define('TOPIC_LOCKED', 1);
- define('TOPIC_MOVED', 2);
- define('TOPIC_WATCH_NOTIFIED', 1);
- define('TOPIC_WATCH_UN_NOTIFIED', 0);
-
-
- // Topic types
- define('POST_NORMAL', 0);
- define('POST_STICKY', 1);
- define('POST_ANNOUNCE', 2);
- define('POST_GLOBAL_ANNOUNCE', 3);
-
-
- // SQL codes
- define('BEGIN_TRANSACTION', 1);
- define('END_TRANSACTION', 2);
-
-
- // Error codes
- define('GENERAL_MESSAGE', 200);
- define('GENERAL_ERROR', 202);
- define('CRITICAL_MESSAGE', 203);
- define('CRITICAL_ERROR', 204);
-
-
- // Private messaging
- define('PRIVMSGS_READ_MAIL', 0);
- define('PRIVMSGS_NEW_MAIL', 1);
- define('PRIVMSGS_SENT_MAIL', 2);
- define('PRIVMSGS_SAVED_IN_MAIL', 3);
- define('PRIVMSGS_SAVED_OUT_MAIL', 4);
- define('PRIVMSGS_UNREAD_MAIL', 5);
-
-
- // URL PARAMETERS
- define('POST_TOPIC_URL', 't');
- define('POST_CAT_URL', 'c');
- define('POST_FORUM_URL', 'f');
- define('POST_USERS_URL', 'u');
- define('POST_POST_URL', 'p');
- define('POST_GROUPS_URL', 'g');
-
- // Session parameters
- define('SESSION_METHOD_COOKIE', 100);
- define('SESSION_METHOD_GET', 101);
-
-
- // Page numbers for session handling
- define('PAGE_INDEX', 0);
- define('PAGE_LOGIN', -1);
- define('PAGE_SEARCH', -2);
- define('PAGE_REGISTER', -3);
- define('PAGE_PROFILE', -4);
- define('PAGE_VIEWONLINE', -6);
- define('PAGE_VIEWMEMBERS', -7);
- define('PAGE_FAQ', -8);
- define('PAGE_POSTING', -9);
- define('PAGE_PRIVMSGS', -10);
- define('PAGE_GROUPCP', -11);
- define('PAGE_TOPIC_OFFSET', 5000);
-
-
- // Auth settings
- define('AUTH_LIST_ALL', 0);
- define('AUTH_ALL', 0);
-
- define('AUTH_REG', 1);
- define('AUTH_ACL', 2);
- define('AUTH_MOD', 3);
- define('AUTH_ADMIN', 5);
-
- define('AUTH_VIEW', 1);
- define('AUTH_READ', 2);
- define('AUTH_POST', 3);
- define('AUTH_REPLY', 4);
- define('AUTH_EDIT', 5);
- define('AUTH_DELETE', 6);
- define('AUTH_ANNOUNCE', 7);
- define('AUTH_STICKY', 8);
- define('AUTH_POLLCREATE', 9);
- define('AUTH_VOTE', 10);
- define('AUTH_ATTACH', 11);
-
-
- // Table names
- define('AUTH_ACCESS_TABLE', $prefix.'_bbauth_access');
- define('BANLIST_TABLE', $prefix.'_bbbanlist');
- define('CATEGORIES_TABLE', $prefix.'_bbcategories');
- define('CONFIG_TABLE', $prefix.'_bbconfig');
- define('DISALLOW_TABLE', $prefix.'_bbdisallow');
- define('FORUMS_TABLE', $prefix.'_bbforums');
- define('GROUPS_TABLE', $prefix.'_bbgroups');
- define('POSTS_TABLE', $prefix.'_bbposts');
- define('POSTS_TEXT_TABLE', $prefix.'_bbposts_text');
- define('PRIVMSGS_TABLE', $prefix.'_bbprivmsgs');
- define('PRIVMSGS_TEXT_TABLE', $prefix.'_bbprivmsgs_text');
- define('PRIVMSGS_IGNORE_TABLE', $prefix.'_bbprivmsgs_ignore');
- define('PRUNE_TABLE', $prefix.'_bbforum_prune');
- define('RANKS_TABLE', $prefix.'_bbranks');
- define('SEARCH_TABLE', $prefix.'_bbsearch_results');
- define('SEARCH_WORD_TABLE', $prefix.'_bbsearch_wordlist');
- define('SEARCH_MATCH_TABLE', $prefix.'_bbsearch_wordmatch');
- define('SESSIONS_TABLE', $prefix.'_bbsessions');
- define('SMILIES_TABLE', $prefix.'_bbsmilies');
- define('THEMES_TABLE', $prefix.'_bbthemes');
- define('THEMES_NAME_TABLE', $prefix.'_bbthemes_name');
- define('TOPICS_TABLE', $prefix.'_bbtopics');
- define('TOPICS_WATCH_TABLE', $prefix.'_bbtopics_watch');
- define('USER_GROUP_TABLE', $prefix.'_bbuser_group');
- define('USERS_TABLE', $user_prefix.'_users');
- define('WORDS_TABLE', $prefix.'_bbwords');
- define('VOTE_DESC_TABLE', $prefix.'_bbvote_desc');
- define('VOTE_RESULTS_TABLE', $prefix.'_bbvote_results');
- define('VOTE_USERS_TABLE', $prefix.'_bbvote_voters');
-
- ?>