template->hook->attach('template:task:sidebar:after-basic-actions', 'recoReco:task/sidebar_action'); // The scheduling engine runs from the CLI (cron). Registered CLI-only so web requests do // not build the console app. if (php_sapi_name() === 'cli') { $this->container['cli']->add(new \Kanboard\Plugin\RecoReco\Console\RecoRecoCommand($this->container)); } } public function getPluginName() { return 'RecoReco'; } public function getPluginDescription() { return t('Calendar-scheduled recurring cards: a template card spawns a copy on a date (yearly, monthly, weekly, daily), driven by the card due date.'); } public function getPluginAuthor() { return 'Ruben (drbeco)'; } public function getPluginVersion() { return '1.1.0'; } public function getPluginHomepage() { return 'https://code.beco.cc/beco/RecoReco'; } public function getCompatibleVersion() { return '>=1.2.0'; } }