blackout / p-kanbanize
A nice class to call kanbanize API from PHP
Installs: 33
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 4
Forks: 3
Open Issues: 0
pkg:composer/blackout/p-kanbanize
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' );