BAOBAB
entrypoint.php
Go to the documentation of this file.
1
<?php
2
/***************************************************************************************************************************/
27
// This won't work unless the config file is active.
28
if
(class_exists(
'CO_Config'
)) {
29
if
( !defined(
'LGV_BASALT_CATCHER'
) ) {
30
define(
'LGV_BASALT_CATCHER'
, 1);
31
}
32
33
// Include the BASALT class.
34
require_once(CO_Config::main_class_dir().
'/co_basalt.class.php'
);
35
36
run_basalt
();
37
}
38
39
function
run_basalt
() {
40
ob_start(
"ob_gzhandler"
);
41
$basalt_instance =
new
CO_Basalt
();
42
ob_end_flush();
43
}
run_basalt
if(class_exists('CO_Config')) run_basalt()
Definition:
entrypoint.php:39
CO_Basalt
Definition:
co_basalt.class.php:55