From 8d69c49da595c60dae51c77d48f397ab97fdf318 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Fri, 20 May 2016 12:51:05 -0400 Subject: Manage plugins from the user interface and from the command line --- kanboard | 48 +++++++++++++++++++++++++++++++----------------- 1 file changed, 31 insertions(+), 17 deletions(-) (limited to 'kanboard') diff --git a/kanboard b/kanboard index 6a51c937..49f3fe17 100755 --- a/kanboard +++ b/kanboard @@ -1,8 +1,9 @@ #!/usr/bin/env php dispatch('app.bootstrap', new Event); -$application = new Application('Kanboard', APP_VERSION); -$application->add(new TaskOverdueNotificationCommand($container)); -$application->add(new SubtaskExportCommand($container)); -$application->add(new TaskExportCommand($container)); -$application->add(new ProjectDailyStatsCalculationCommand($container)); -$application->add(new ProjectDailyColumnStatsExportCommand($container)); -$application->add(new TransitionExportCommand($container)); -$application->add(new LocaleSyncCommand($container)); -$application->add(new LocaleComparatorCommand($container)); -$application->add(new TaskTriggerCommand($container)); -$application->add(new CronjobCommand($container)); -$application->add(new ResetPasswordCommand($container)); -$application->add(new ResetTwoFactorCommand($container)); -$application->run(); +try { + + require __DIR__.'/app/common.php'; + + $container['dispatcher']->dispatch('app.bootstrap', new Event); + + $application = new Application('Kanboard', APP_VERSION); + $application->add(new TaskOverdueNotificationCommand($container)); + $application->add(new SubtaskExportCommand($container)); + $application->add(new TaskExportCommand($container)); + $application->add(new ProjectDailyStatsCalculationCommand($container)); + $application->add(new ProjectDailyColumnStatsExportCommand($container)); + $application->add(new TransitionExportCommand($container)); + $application->add(new LocaleSyncCommand($container)); + $application->add(new LocaleComparatorCommand($container)); + $application->add(new TaskTriggerCommand($container)); + $application->add(new CronjobCommand($container)); + $application->add(new ResetPasswordCommand($container)); + $application->add(new ResetTwoFactorCommand($container)); + $application->add(new PluginUpgradeCommand($container)); + $application->add(new PluginInstallCommand($container)); + $application->add(new PluginUninstallCommand($container)); + $application->run(); + +} catch (Exception $e) { + echo $e->getMessage().PHP_EOL; + exit(255); +} -- cgit v1.2.3