Add htmlpurifier and phpgit to external modules.
[xhtml-compiler.git] / common.php
blob8f4358aa45c98fe0f3aedf5e1b5ec46b03217c87
1 <?php
3 if (!version_compare(PHP_VERSION, "5", ">=")) exit('Requires PHP 5.');
5 // setup our error reporting, ideally this would be in php.ini but shared
6 // hosting environment requires a little more flexibility.
7 error_reporting(E_STRICT | E_ALL);
8 ini_set('display_errors', false);
9 ini_set('log_errors', true);
10 ini_set('error_log', dirname(__FILE__) . '/errors.log');
12 // set working directory to parent directory (slightly hacky)
13 // if we want this to be able to be included in other apps,
14 // this must be removed
15 chdir( dirname(__FILE__) . '/../');
17 require_once 'functions.php';
19 require_once 'XHTMLCompiler.php';
21 require_once 'XHTMLCompiler/PHP.php';
22 require_once 'XHTMLCompiler/Exception.php';
24 require_once 'XHTMLCompiler/Page.php';
25 require_once 'XHTMLCompiler/File.php';
26 require_once 'XHTMLCompiler/Directory.php';
28 require_once 'XHTMLCompiler/RSSFeed.php';
30 require_once 'XHTMLCompiler/Filter.php';
31 require_once 'XHTMLCompiler/FilterManager.php';
32 require_once 'XHTMLCompiler/TextFilter.php';
33 require_once 'XHTMLCompiler/DOMFilter.php';
34 require_once 'XHTMLCompiler/DOMFilter/NewsBase.php';
36 // load external libraries that we *need*
37 require_once 'external/swiftmailer/lib/swift_required.php';
38 require_once 'external/phpgit/library/Git.php';
39 require_once 'external/htmlpurifier/library/HTMLPurifier.auto.php';
40 require_once 'external/htmlpurifier/extras/HTMLPurifierExtras.auto.php';
42 set_exception_handler('xhtmlcompiler_exception_handler');
43 $xc = XHTMLCompiler::getInstance(); // invoke the super-object
44 check_errors();
45 register_shutdown_function('check_errors');
46 if($xc->getConf('debug')) {
47 restore_error_handler();
48 ini_set('display_errors', true);