9 lines
243 B
Text
9 lines
243 B
Text
|
#!/usr/bin/php
|
||
|
<?php
|
||
|
|
||
|
require realpath(dirname(__FILE__).'/..')."/includes/core.php";
|
||
|
if (is_callable('handle_cli_args'))
|
||
|
handle_cli_args();
|
||
|
else
|
||
|
logging('FATAL', "An error occured initializing CLI : handle_cli_args() function not found.");
|