source: extensions/Register_FluxBB/include/constants.php @ 21424

Last change on this file since 21424 was 21424, checked in by Eric, 11 years ago

Next version is 2.5.0 :

  • Compliance with Piwigo 2.5
  • Core code refactory : Plugin's configuration vars are now serialized in database
  • Admin panel refactory : No more tabs
  • Admin panel refactory : Clear and dark administration theme compatibility
  • English language reference review and improved
  • Compliance improved with FluxBB 1.5 - Register_FluxBB is still compatible with 1.2 and 1.4 FluxBB forums
  • Update tr_TR, thanks to : LazBoy
  • Update it_IT, thanks to : Ericnet
  • Update pl_PL, thanks to : K.S.
  • Property svn:eol-style set to LF
File size: 592 bytes
Line 
1<?php
2
3global $prefixeTable, $conf;
4
5$conf_Register_FluxBB = unserialize($conf['Register_FluxBB']);
6
7define('Register_FluxBB_ID_TABLE', $prefixeTable.'Register_FluxBB_id');
8define('FluxBB_CONFIG_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'config');
9define('FluxBB_USERS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'users');
10define('FluxBB_POSTS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'posts');
11define('FluxBB_TOPICS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'topics');
12define('FluxBB_SUBSCRIPTIONS_TABLE', $conf_Register_FluxBB['FLUXBB_PREFIX'].'topic_subscriptions');
13
14?>
Note: See TracBrowser for help on using the repository browser.