replace ident spaces with tabs
This commit is contained in:
parent
1dd18980ae
commit
04b9e77478
41
console.php
41
console.php
|
@ -1,3 +1,4 @@
|
|||
|
||||
<?php
|
||||
/**
|
||||
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
|
||||
|
@ -22,30 +23,30 @@ if (!OC::$CLI) {
|
|||
|
||||
$self = basename($argv[0]);
|
||||
if ($argc <= 1) {
|
||||
$argv[1] = "help";
|
||||
$argv[1] = "help";
|
||||
}
|
||||
|
||||
$command = $argv[1];
|
||||
array_shift($argv);
|
||||
|
||||
switch ($command) {
|
||||
case 'files:scan':
|
||||
require_once 'apps/files/console/scan.php';
|
||||
break;
|
||||
case 'status':
|
||||
require_once 'status.php';
|
||||
break;
|
||||
case 'help':
|
||||
echo "Usage:" . PHP_EOL;
|
||||
echo " " . $self . " <command>" . PHP_EOL;
|
||||
echo PHP_EOL;
|
||||
echo "Available commands:" . PHP_EOL;
|
||||
echo " files:scan -> rescan filesystem" .PHP_EOL;
|
||||
echo " status -> show some status information" .PHP_EOL;
|
||||
echo " help -> show this help screen" .PHP_EOL;
|
||||
break;
|
||||
default:
|
||||
echo "Unknown command '$command'" . PHP_EOL;
|
||||
echo "For available commands type ". $self . " help" . PHP_EOL;
|
||||
break;
|
||||
case 'files:scan':
|
||||
require_once 'apps/files/console/scan.php';
|
||||
break;
|
||||
case 'status':
|
||||
require_once 'status.php';
|
||||
break;
|
||||
case 'help':
|
||||
echo "Usage:" . PHP_EOL;
|
||||
echo " " . $self . " <command>" . PHP_EOL;
|
||||
echo PHP_EOL;
|
||||
echo "Available commands:" . PHP_EOL;
|
||||
echo " files:scan -> rescan filesystem" .PHP_EOL;
|
||||
echo " status -> show some status information" .PHP_EOL;
|
||||
echo " help -> show this help screen" .PHP_EOL;
|
||||
break;
|
||||
default:
|
||||
echo "Unknown command '$command'" . PHP_EOL;
|
||||
echo "For available commands type ". $self . " help" . PHP_EOL;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -34,9 +34,9 @@ try {
|
|||
'versionstring'=>OC_Util::getVersionString(),
|
||||
'edition'=>OC_Util::getEditionString());
|
||||
if (OC::$CLI) {
|
||||
print_r($values);
|
||||
print_r($values);
|
||||
} else {
|
||||
echo(json_encode($values));
|
||||
echo(json_encode($values));
|
||||
}
|
||||
|
||||
} catch (Exception $ex) {
|
||||
|
|
Loading…
Reference in New Issue