Skip to content
Snippets Groups Projects
Commit 04b9e774 authored by Masaki Kawabata Neto's avatar Masaki Kawabata Neto
Browse files

replace ident spaces with tabs

parent 1dd18980
Branches
No related tags found
No related merge requests found
<?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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment