source: extensions/Register_FluxBB/branches/2.1/include/constants.php @ 3780

Last change on this file since 3780 was 3780, checked in by Eric, 15 years ago

2.1 branch creation

  • Property svn:eol-style set to LF
File size: 615 bytes
Line 
1<?php
2
3global $prefixeTable, $conf;
4
5$conf_Register_FluxBB = isset($conf['Register_FluxBB']) ? explode(";" , $conf['Register_FluxBB']) : array();
6
7define('Register_FluxBB_ID_TABLE', $prefixeTable.'Register_FluxBB_id');
8
9if (isset($conf_Register_FluxBB[0]))
10{
11  define('FluxBB_CONFIG_TABLE', $conf_Register_FluxBB[0].'config');
12  define('FluxBB_USERS_TABLE', $conf_Register_FluxBB[0].'users');
13  define('FluxBB_POSTS_TABLE', $conf_Register_FluxBB[0].'posts');
14  define('FluxBB_TOPICS_TABLE', $conf_Register_FluxBB[0].'topics');
15  define('FluxBB_SUBSCRIPTIONS_TABLE', $conf_Register_FluxBB[0].'subscriptions');
16}
17
18?>
Note: See TracBrowser for help on using the repository browser.