Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/management/PhabricatorManagementWorkflow.php
| <?php | <?php | ||||
| abstract class PhabricatorManagementWorkflow extends PhutilArgumentWorkflow { | abstract class PhabricatorManagementWorkflow extends PhutilArgumentWorkflow { | ||||
| public function isExecutable() { | public function isExecutable() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getViewer() { | public function getViewer() { | ||||
| // Some day, we might provide a more general viewer mechanism to scripts. | // Some day, we might provide a more general viewer mechanism to scripts. | ||||
| // For now, workflows can call this method for convenience and future | // For now, workflows can call this method for convenience and future | ||||
| // flexibility. | // flexibility. | ||||
| return PhabricatorUser::getOmnipotentUser(); | return PhabricatorUser::getOmnipotentUser(); | ||||
| } | } | ||||
| protected function parseTimeArgument($time) { | |||||
| if (!strlen($time)) { | |||||
| return null; | |||||
| } | |||||
| $epoch = strtotime($time); | |||||
| if ($epoch <= 0) { | |||||
| throw new PhutilArgumentUsageException( | |||||
| pht('Unable to parse time "%s".', $time)); | |||||
| } | |||||
| return $epoch; | |||||
| } | |||||
| } | } | ||||