De job service biedt de mogelijkheid om gepubliceerde vacatures uit eazymatch op te halen. Hierbij kan gebruik gemaakt worden van filters en paginanavigatie.
Voorbeeld call: vacatures ophalen & filteren
joblist.php
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | <?php /** * example to connect with eazymatch and get a list of published jobs */ $rootDir = dirname(dirname( __FILE__ )); //include the autoloader for eazymatch classes include_once ( $rootDir . '/bootstrap.autoload.php' ); //create a new connection using our private configuration $apiConnect = new emolclient_manager_base( include ( $rootDir . '/config.php' ) ); /** * list all published jobs */ //the limit on how many jobs to fetch, ordered by date $limit = 10; //filters, a manager function 50km round Amsterdam $filters = array ( 'free' => array ( 'manager' ), 'location' => array ( 'city' => 'Amsterdam' , 'range' => 50000 //range in meters ) ); //default ordering $orderBy = '' ; //get the results // TheConnection -> TheController -> TheMethod ( Parameters ); $resultArray = $apiConnect ->job->getPublished( $limit , $filters , $orderBy ); echo '<pre>' ; var_dump( $resultArray ); echo '</pre>' ; ?> |
Voorbeeld call: één vacature ophalen
job.php
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 | <?php /** * example to connect with eazymatch and get a published jobs (all data) */ $rootDir = dirname(dirname( __FILE__ )); //include the autoloader for eazymatch classes include_once ( $rootDir . '/bootstrap.autoload.php' ); //create a new connection using our private configuration $apiConnect = new emolclient_manager_base( include ( $rootDir . '/config.php' ) ); //get the results // TheConnection -> TheController -> TheMethod ( Parameters ); $resultArray = $apiConnect ->job->getFullPublished( 1000 ); echo '<pre>' ; var_dump( $resultArray ); echo '</pre>' ; ?> |