Hooks for project creation/duplication?

Hi,

I’m trying to develop a plugin for Kanboard to manage and edit project documents online. However, I’m a complete beginner with PHP and not very familiar with Kanboard’s built-in hooks system.

I attempted to test with the hook $this->hook->on('model:project:creation:after') in my plugin code, but it didn’t work as expected (the hook never triggered).

Could anyone confirm if this hook is valid for project creation, or point me to the correct hook names for project creation/duplication? Any guidance or examples for a PHP newbie would be greatly appreciated!

Thanks in advance for your help.

$this->hook->on('model:project:creation:after', function($data) {
    $this->logger->debug('Project creation hook triggered! ID: ' . $data\['project_id'\]);
    return $data;
});

Hi Yumiko,

There is no such hook; therefore, no trigger occurs. You have to create your own hook.

1 Like

Okay, thank you alfredb. I’ll give it a try.