pKanbanize v 2.1
A nice class to call kanbanize API from PHP, (*1)
Basic usage:
$kanbanize = new \Lib\pkanbanize( YOURKEY, DOMAIN, null, null, FORMAT );
// or
$kanbanize = new \Lib\pkanbanize( null, DOMAIN, USER, PASS, FORMAT );
$tasks = $kanbanize->getAllTasks( IDBOARD )
echo '
';
print_r($tasks);
echo '
';
Available functions
You can refer to the official kanbanize API doc, (*2)
Implemented function, (*3)
- getProjectsAndBoards
- getBoardStructure
- getBoardSettings
- getBoardActivities
- createNewTask
- deleteTask
- getTaskDetails
- getAllTasks
- addComment
- moveTask
- editTask
- blockTask
- getLinks
Pro users - kanbanize via subdomain
If you access kanbanize on your own subdomain, you can specify the subdomain name in the constructor., (*4)
https://yourcompany.kanbanize.com/, (*5)
$kanbanize = new \Lib\pkanbanize( YOURKEY, 'yourcompany' );
TEAM
Carlo Denaro
Carlo 'kajyr' , (*6)