lithium\console\command\Help::_renderCommands PHP Метод

_renderCommands() защищенный Метод

Output the formatted available commands.
protected _renderCommands ( ) : void
Результат void
    protected function _renderCommands()
    {
        $commands = Libraries::locate('command', null, array('recursive' => false));
        foreach ($commands as $key => $command) {
            $library = strtok($command, '\\');
            if (!$key || strtok($commands[$key - 1], '\\') != $library) {
                $this->out("{:heading}COMMANDS{:end} {:blue}via {$library}{:end}");
            }
            $info = Inspector::info($command);
            $name = strtolower(Inflector::slug($info['shortName']));
            $this->out($this->_pad($name), 'heading');
            $this->out($this->_pad($info['description']), 2);
        }
        $message = 'See `{:command}li3 help COMMAND{:end}`';
        $message .= ' for more information on a specific command.';
        $this->out($message, 2);
    }