Page MenuHomeSealhub

PhutilHelpArgumentWorkflow.php
No OneTemporary

PhutilHelpArgumentWorkflow.php

<?php
final class PhutilHelpArgumentWorkflow extends PhutilArgumentWorkflow {
protected function didConstruct() {
$this->setName('help');
$this->setExamples(<<<EOHELP
**help** [__command__]
EOHELP
);
$this->setSynopsis(<<<EOHELP
Show this help, or workflow help for __command__.
EOHELP
);
$this->setArguments(
array(
array(
'name' => 'help-with-what',
'wildcard' => true,
),
));
}
public function isExecutable() {
return true;
}
public function execute(PhutilArgumentParser $args) {
$with = $args->getArg('help-with-what');
if (!$with) {
$args->printHelpAndExit();
} else {
foreach ($with as $thing) {
echo phutil_console_format(
"**%s**\n\n",
pht('%s WORKFLOW', strtoupper($thing)));
echo $args->renderWorkflowHelp($thing, $show_flags = true);
echo "\n";
}
exit(PhutilArgumentParser::PARSE_ERROR_CODE);
}
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Nov 28, 15:42 (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1082558
Default Alt Text
PhutilHelpArgumentWorkflow.php (992 B)

Event Timeline