summaryrefslogtreecommitdiff
path: root/plugins/smf2/smf2.module
blob: b2060f1fb728964d9f24d6646d733039672a886f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

function smf2_init($config) {
  $smf_root_path = $config['root_path'];
  if (file_exists($smf_root_path . 'SSI.php')) {
    include_once $smf_root_path . 'SSI.php';
  }
  else {
    file_put_contents('php://stderr', "SMF not found at <{$smf_root_path}>.\n");
    exit;
  }
  require_once __DIR__ . '/BridgeSMF2.php';
  return new BridgeSMF2();
}