summaryrefslogtreecommitdiff
path: root/plugins/Timetrackingeditor/Console
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2020-05-05 14:25:42 +0200
committeremkael <emkael@tlen.pl>2020-05-05 14:25:42 +0200
commit62827e6cf470449c117624058fb36ad94804bcc0 (patch)
tree10cd1e4d36c34b694acfadaa69fc7f6ae2b1eabd /plugins/Timetrackingeditor/Console
parent7b66ddf2e4fbdb837e78d8b7dbaa9fc38391bc32 (diff)
Time tracking related pluginsHEADmaster
Diffstat (limited to 'plugins/Timetrackingeditor/Console')
-rw-r--r--plugins/Timetrackingeditor/Console/AllSubtaskTimeTrackingExportCommand.php29
-rw-r--r--plugins/Timetrackingeditor/Console/SubtaskTimeTrackingExportCommand.php35
2 files changed, 64 insertions, 0 deletions
diff --git a/plugins/Timetrackingeditor/Console/AllSubtaskTimeTrackingExportCommand.php b/plugins/Timetrackingeditor/Console/AllSubtaskTimeTrackingExportCommand.php
new file mode 100644
index 00000000..6a56aa22
--- /dev/null
+++ b/plugins/Timetrackingeditor/Console/AllSubtaskTimeTrackingExportCommand.php
@@ -0,0 +1,29 @@
+<?php
+
+namespace Kanboard\Plugin\Timetrackingeditor\Console;
+
+use Kanboard\Plugin\Timetrackingeditor\Html;
+use Kanboard\Model\SubtaskTimeTrackingModel;
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+use Kanboard\Console\BaseCommand;
+
+class AllSubtaskTimeTrackingExportCommand extends BaseCommand
+{
+ protected function configure()
+ {
+ $this
+ ->setName('export:allsubtaskstimetracking')
+ ->setDescription('Subtasks Time Tracking CSV export for all events');
+ }
+
+ protected function execute(InputInterface $input, OutputInterface $output)
+ {
+ $data = $this->subtaskTimeTrackingExport->exportAll();
+
+ if (is_array($data)) {
+ Html::output($data);
+ }
+ }
+}
diff --git a/plugins/Timetrackingeditor/Console/SubtaskTimeTrackingExportCommand.php b/plugins/Timetrackingeditor/Console/SubtaskTimeTrackingExportCommand.php
new file mode 100644
index 00000000..4f6e6384
--- /dev/null
+++ b/plugins/Timetrackingeditor/Console/SubtaskTimeTrackingExportCommand.php
@@ -0,0 +1,35 @@
+<?php
+
+namespace Kanboard\Console;
+
+use Kanboard\Core\Csv;
+use Kanboard\Model\SubtaskTimeTrackingModel;
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+
+class SubtaskTimeTrackingExportCommand extends BaseCommand
+{
+ protected function configure()
+ {
+ $this
+ ->setName('export:subtaskstimetracking')
+ ->setDescription('Subtasks Time Tracking CSV export')
+ ->addArgument('project_id', InputArgument::REQUIRED, 'Project id')
+ ->addArgument('start_date', InputArgument::REQUIRED, 'Start date (YYYY-MM-DD)')
+ ->addArgument('end_date', InputArgument::REQUIRED, 'End date (YYYY-MM-DD)');
+ }
+
+ protected function execute(InputInterface $input, OutputInterface $output)
+ {
+ $data = $this->subtaskTimeTrackingExport->export(
+ $input->getArgument('project_id'),
+ $input->getArgument('start_date'),
+ $input->getArgument('end_date')
+ );
+
+ if (is_array($data)) {
+ Html::output($data);
+ }
+ }
+}