X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/059c6ab77b8e63210b9afc266d62c9f543d4d7ae..6c791f2d0c159d56c570802c8d9bd3612262aa9e:/src/shpub/Command/Article.php diff --git a/src/shpub/Command/Article.php b/src/shpub/Command/Article.php index 8445af4..018b403 100644 --- a/src/shpub/Command/Article.php +++ b/src/shpub/Command/Article.php @@ -6,16 +6,8 @@ class Command_Article extends Command_AbstractProps public static function opts(\Console_CommandLine $optParser) { $cmd = $optParser->addCommand('article'); - $cmd->addOption( - 'html', - array( - 'short_name' => '-h', - 'long_name' => '--html', - 'description' => 'Text content is HTML', - 'action' => 'StoreTrue', - 'default' => false, - ) - ); + $cmd->description = 'Create an article'; + static::addOptHtml($cmd); static::optsGeneric($cmd); $cmd->addArgument( 'title', @@ -40,13 +32,7 @@ class Command_Article extends Command_AbstractProps $req = new Request($this->cfg->host, $this->cfg); $req->setType('entry'); $req->addProperty('name', $cmdRes->args['title']); - if ($cmdRes->options['html']) { - $req->addProperty( - 'content', ['html' => $cmdRes->args['text']] - ); - } else { - $req->addProperty('content', $cmdRes->args['text']); - } + $req->addContent($cmdRes->args['text'], $cmdRes->options['html']); $this->handleGenericOptions($cmdRes, $req); $res = $req->send();