}
// }}}
+
+ function getHelp($command)
+ {
+ switch ($command) {
+ case 'login':
+ return array(null, 'Connects to the remote server');
+ case 'logout':
+ return array(null, 'Disconnects from the remote server');
+ }
+ }
// {{{ run()
/**
}
// }}}
+
+ function getHelp($command)
+ {
+ switch ($command) {
+ case 'config-show':
+ return array(null, 'Displays the configuration');
+ case 'config-get':
+ return array('<parameter>',
+ 'Displays the value of the given parameter');
+ case 'config-set':
+ return array('<parameter>=<value>',
+ 'Sets the value of a parameter in the config');
+ }
+ }
// {{{ run()
function run($command, $options, $params)
return array('list-installed');
}
+ function getHelp($command)
+ {
+ switch ($command) {
+ case 'list-installed':
+ return array(null, 'List the installed PEAR packages in the system');
+ }
+ }
+
// }}}
// {{{ run()