File "cron_functions.php"
Full path: /home/cakedeco/retaildirectonline.co.uk/system/library/squareup/cron_functions.php
File
size: 1.17 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
function squareup_validate() {
if (php_sapi_name() != 'cli') {
die("Not in Command Line.");
}
}
function squareup_chdir($current_dir) {
$root_dir = dirname(dirname(dirname($current_dir)));
chdir($root_dir);
return $root_dir;
}
function squareup_define_route() {
define('SQUAREUP_ROUTE', 'extension/recurring/squareup/recurring');
$_GET['route'] = SQUAREUP_ROUTE;
}
function squareup_init($current_dir) {
global $argc, $argv;
// Validate environment
squareup_validate();
// Set up default server vars
if (isset($argc) && isset($argv) && $argc >= 3) {
$_SERVER["HTTP_HOST"] = $argv[1];
$_SERVER["SERVER_NAME"] = $argv[1];
$_SERVER["SERVER_PORT"] = $argv[2];
} else {
$_SERVER["HTTP_HOST"] = "localhost";
$_SERVER["SERVER_NAME"] = "localhost";
$_SERVER["SERVER_PORT"] = 80;
}
putenv("SERVER_NAME=" . $_SERVER["SERVER_NAME"]);
// Change root dir
$root_dir = squareup_chdir($current_dir);
squareup_define_route();
if (file_exists($root_dir . '/index.php')) {
return $root_dir . '/index.php';
}
}