Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
ec60970b5d | |||
7c76928c3b | |||
ff9845e23e |
@ -90,6 +90,16 @@ class Shell
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the current context
|
||||
*
|
||||
* @return Context The current context
|
||||
*/
|
||||
public function getContext()
|
||||
{
|
||||
return $this->context;
|
||||
}
|
||||
|
||||
/**
|
||||
* Push a new primary context, saving the previous contexts on a stack.
|
||||
*
|
||||
@ -407,25 +417,27 @@ class Shell
|
||||
}
|
||||
}
|
||||
ksort($ghelp);
|
||||
$_ = function($command,$args,$info) {
|
||||
printf(" \e[96m%s\e[0m \e[0;3m%s\e[0m \e[30G\e[36m%s\e[0m\n", $command, $args, $info);
|
||||
};
|
||||
printf("\e[1mCommands:\e[0m\n");
|
||||
foreach ($help as $command=>$info) {
|
||||
if (strpos($command," ")!==false) {
|
||||
list($command,$args) = explode(" ",$command,2);
|
||||
} else $args=null;
|
||||
$command = sprintf("\e[97m%s \e[90m%s\e[0m", $command,$args);
|
||||
printf(" %s - \e[3;36m%s\e[0m\n", $command, $info);
|
||||
$_($command, $args,$info);
|
||||
}
|
||||
if (count($ghelp)) {
|
||||
printf("\n\e[0mCommands from parent contexts:\e[0m\n");
|
||||
printf("\e[1mCommands from parent contexts:\e[0m\n");
|
||||
if (strpos($command," ")!==false) {
|
||||
list($command,$args) = explode(" ",$command,2);
|
||||
} else $args=null;
|
||||
$command = sprintf("\e[97m%s \e[90m%s\e[0m", $command,$args);
|
||||
printf(" %s - \e[3;36m%s\e[0m\n", $command, $info);
|
||||
$_($command, $args,$info);
|
||||
}
|
||||
printf("\nGlobal commands:\n");
|
||||
printf(" \e[97m%s\e[0;36;3m - %s\e[0m\n", "exit", "Leave the shell");
|
||||
printf(" \e[97m%s\e[0;36;3m - %s\e[0m\n", "..", "Discard the current context and go to parent");
|
||||
printf("\e[1mGlobal commands:\e[0m\n");
|
||||
$_("exit", null, "Leave the shell");
|
||||
$_(".", null, "Show the context tree");
|
||||
$_("..", null, "Discard the current context and go to parent");
|
||||
break;
|
||||
case 'exit':
|
||||
$this->stop();
|
||||
|
Reference in New Issue
Block a user