summaryrefslogtreecommitdiff
path: root/plugins/phpbb30/phpbb30.module
blob: 2fa8b9aa6344f0119ff180d7d5e62c3a691ecc29 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

function phpbb30_init($config) {
  global $phpbb_root_path;
  $phpbb_root_path = $config['root_path'];
  // Bootstrap the phpBB system.
  require_once __DIR__ . '/phpbb30_bootstrap.php';
  // Load the plugin.
  require_once __DIR__ . '/BridgePhpBB30.php';
  return new BridgePhpBB30($auth, $db);
}