| Developer | fundamentallmedia |
|---|---|
| Update Time | May 4, 2018, 7:30 p.m. |
| Donation URL: | donation |
| PHP Version: | 3.0.1 + |
| WordPress Version: | 4.9.4 |
| Copyright: | GPLv2 or later |
| Copyright URL: | Copyright Information |
Niki server, enter Niki OAuth URL : https://auth.niki.nlNiki server, enter Niki API URL : https://api.niki.nlWijzigingen opslaanVraag Niki API Token aan and follow instructions.Niki projecten check the relevant projects and click Wijzigingen opslaan/wp-content/plugins/ directory using your favorite method (ftp, sftp, scp, etc...)Niki server, enter Niki OAuth URL : https://auth.niki.nlNiki server, enter Niki API URL : https://api.niki.nlWijzigingen opslaanVraag Niki API Token aan and follow instructions.Niki projecten check the relevant projects and click Wijzigingen opslaanInclude the niki-functions.php in your page template and call the specific housetype information
by specifying project id and housetype id like so:
`
get_plugin_path() . "examples/niki-functions.php";
niki_show_woningtype('TBIGEN_79DBBC06-518B-4591-882E-EE63359CCBA8','TBIGEN_4D14999B-87DB-4874-ACB9-B3CBD87B2936');
?>
`
In this example, the first parameter is the Niki project id, and the second parameter is the Niki housetype id.
Include the niki-functions.php in your page template and call the listing example function like so:
`
get_plugin_path() . "examples/niki-functions.php";
niki_show_aanbod();
?>
`
This will generate a listing of all housetypes in the projects selected in the admin configuration.
Include the niki-functions.php in your page template (if you dit not do already so), and show the form:
`
get_plugin_path() . "examples/niki-functions.php";
niki_show_interesse();
?>
`
Given any Niki API resource, you can access the Niki API by the following code: ` get_niki_resource($resource, array()); // empty parameter array, not needed here // display the contents of $myProject var_dump($myProject); ?> `