8 lines
243 B
PHP
Executable file
8 lines
243 B
PHP
Executable file
#!/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.");
|