blackout / p-kanbanize
This package is abandoned and no longer maintained.
No replacement package was suggested.
There is no license information available for the latest version (v2.1) of this package.
A nice class to call kanbanize API from PHP
v2.1
2014-06-20 08:33 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-06-18 05:15:37 UTC
README
pKanbanize v 2.1
A nice class to call kanbanize API from PHP
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 '<pre>'; print_r($tasks); echo '</pre>';
Available functions
You can refer to the official kanbanize API doc
Implemented function
- 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.
https://yourcompany.kanbanize.com/
$kanbanize = new \Lib\pkanbanize( YOURKEY, 'yourcompany' );