mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-08 07:52:40 +01:00
22 lines
555 B
PHP
22 lines
555 B
PHP
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
$root = dirname(dirname(dirname(__FILE__)));
|
||
|
require_once $root.'/scripts/__init_script__.php';
|
||
|
|
||
|
$args = new PhutilArgumentParser($argv);
|
||
|
$args->setTagline(pht('manage Calendar'));
|
||
|
$args->setSynopsis(<<<EOSYNOPSIS
|
||
|
**calendar** __command__ [__options__]
|
||
|
Manage Calendar.
|
||
|
|
||
|
EOSYNOPSIS
|
||
|
);
|
||
|
$args->parseStandardArguments();
|
||
|
|
||
|
$workflows = id(new PhutilClassMapQuery())
|
||
|
->setAncestorClass('PhabricatorCalendarManagementWorkflow')
|
||
|
->execute();
|
||
|
$workflows[] = new PhutilHelpArgumentWorkflow();
|
||
|
$args->parseWorkflows($workflows);
|