PHP code example of blackout / p-kanbanize

1. Go to this page and download the library: Download blackout/p-kanbanize library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

blackout / p-kanbanize example snippets


$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>';

$kanbanize = new \Lib\pkanbanize( YOURKEY, 'yourcompany' );