| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/Libteiser - Ojs/ojs2/tools/includes/ |
Upload File : |
<?php
/**
* @file cliTool.inc.php
*
* Copyright (c) 2003-2009 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class CommandLineTool
* @ingroup tools
*
* @brief Initialization code for command-line scripts.
*/
// $Id: cliTool.inc.php,v 1.12.2.1 2009/04/08 19:43:35 asmecher Exp $
/** Initialization code */
define('PWD', getcwd());
chdir(dirname(dirname(dirname(__FILE__)))); /* Change to base directory */
if (!defined('STDIN')) {
define('STDIN', fopen('php://stdin','r'));
}
define('SESSION_DISABLE_INIT', 1);
require('includes/driver.inc.php');
if (!isset($argc)) {
// In PHP < 4.3.0 $argc/$argv are not automatically registered
if (isset($_SERVER['argc'])) {
$argc = $_SERVER['argc'];
$argv = $_SERVER['argv'];
} else {
$argc = $argv = null;
}
}
class CommandLineTool {
/** @var string the script being executed */
var $scriptName;
/** @vary array Command-line arguments */
var $argv;
function CommandLineTool($argv = array()) {
$this->argv = isset($argv) && is_array($argv) ? $argv : array();
if (isset($_SERVER['SERVER_NAME'])) {
die('This script can only be executed from the command-line');
}
$this->scriptName = isset($this->argv[0]) ? array_shift($this->argv) : '';
if (isset($this->argv[0]) && $this->argv[0] == '-h') {
$this->usage();
exit(0);
}
}
function usage() {
}
}
?>