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

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