source: extensions/Register_PhpBB/include/constants.php @ 7795

Last change on this file since 7795 was 7795, checked in by Eric, 13 years ago

Commit new release 2.1.a coded by Pierric

  • Property svn:eol-style set to LF
File size: 1.0 KB
Line 
1<?php
2
3global $prefixeTable, $conf;
4
5$conf_Register_PhpBB = isset($conf['Register_PhpBB']) ? explode(";" , $conf['Register_PhpBB']) : array();
6
7define('Register_PhpBB_ID_TABLE', $prefixeTable.'Register_PhpBB_id');
8
9if (isset($conf_Register_PhpBB[0]))
10{
11  define('PhpBB_CONFIG_TABLE', $conf_Register_PhpBB[0].'config');
12  define('PhpBB_USERS_TABLE', $conf_Register_PhpBB[0].'users');
13  define('PhpBB_POSTS_TABLE', $conf_Register_PhpBB[0].'posts');
14  define('PhpBB_TOPICS_TABLE', $conf_Register_PhpBB[0].'topics');
15  define('PhpBB_SUBSCRIPTIONS_TABLE', $conf_Register_PhpBB[0].'topics_watch');
16  define('PhpBB_GROUPS_TABLE', $conf_Register_PhpBB[0].'groups');
17  define('PhpBB_SUBFORUMS_TABLE', $conf_Register_PhpBB[0].'forums_watch');
18  define('PhpBB_USERGROUP_TABLE', $conf_Register_PhpBB[0].'user_group');
19  define('PhpBB_FORUMS_TABLE', $conf_Register_PhpBB[0].'forums');
20  define('PhpBB_TOPICSPOSTED_TABLE', $conf_Register_PhpBB[0].'topics_posted');
21  define('PhpBB_FORUMSTRACK_TABLE', $conf_Register_PhpBB[0].'forums_track');
22}
23?>
Note: See TracBrowser for help on using the repository browser.