yellow/yellow.php
2015-10-06 14:19:11 +02:00

17 lines
519 B
PHP
Executable file

<?php
// Yellow is for people who make websites. http://datenstrom.se/yellow
// This file may be used and distributed under the terms of the public license.
require_once("system/plugins/core.php");
if(PHP_SAPI != "cli")
{
$yellow = new YellowCore();
$yellow->plugins->load();
$yellow->request();
} else {
$yellow = new YellowCore();
$yellow->plugins->load();
$statusCode = $yellow->command("commandline", $argv[1], $argv[2], $argv[3], $argv[4], $argv[5], $argv[6], $argv[7]);
exit($statusCode<400 ? 0 : 1);
}
?>