Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
getJob ($id, $fields=null) | |
getBookmarked ($fields=null) | |
bookmark ($id) | |
deleteBookmark ($id) | |
getSuggested ($fields=null, $start=0, $count=0) | |
search ($fields=null, $keywords=null, $company_name=null, $job_title=null, $country_code=null, $postal_code=null, $distance=null, $facets=null, $facet=null, $start=0, $count=0, $sort=null) | |
Fonctions membres publiques inherited from JLinkedinObject | |
__construct (JRegistry $options=null, JHttp $client=null, JLinkedinOAuth $oauth=null) | |
booleanToString ($bool) | |
getOption ($key) | |
setOption ($key, $value) |
Additional Inherited Members | |
Attributs protégés inherited from JLinkedinObject | |
$options | |
$client | |
$oauth |
JLinkedinJobs::bookmark | ( | $id | ) |
Method to bookmark a job to the current user's account.
integer | $id | The unique identifier for a job. |
Définition à la ligne 109 du fichier jobs.php.
JLinkedinJobs::deleteBookmark | ( | $id | ) |
Method to delete a bookmark.
integer | $id | The unique identifier for a job. |
Définition à la ligne 147 du fichier jobs.php.
JLinkedinJobs::getBookmarked | ( | $fields = null | ) |
Method to get a list of bookmarked jobs for the current member.
string | $fields | Request fields beyond the default ones. |
Définition à la ligne 70 du fichier jobs.php.
JLinkedinJobs::getJob | ( | $id, | |
$fields = null |
|||
) |
Method to retrieve detailed information about a job.
integer | $id | The unique identifier for a job. |
string | $fields | Request fields beyond the default ones. |
Définition à la ligne 31 du fichier jobs.php.
JLinkedinJobs::getSuggested | ( | $fields = null , |
|
$start = 0 , |
|||
$count = 0 |
|||
) |
Method to retrieve job suggestions for the current user.
string | $fields | Request fields beyond the default ones. |
integer | $start | Starting location within the result set for paginated returns. |
integer | $count | The number of results returned. |
Définition à la ligne 182 du fichier jobs.php.
JLinkedinJobs::search | ( | $fields = null , |
|
$keywords = null , |
|||
$company_name = null , |
|||
$job_title = null , |
|||
$country_code = null , |
|||
$postal_code = null , |
|||
$distance = null , |
|||
$facets = null , |
|||
$facet = null , |
|||
$start = 0 , |
|||
$count = 0 , |
|||
$sort = null |
|||
) |
Method to search across LinkedIn's job postings.
string | $fields | Request fields beyond the default ones. |
string | $keywords | Members who have all the keywords anywhere in their profile. |
string | $company_name | Jobs with a matching company name. |
string | $job_title | Matches jobs with the same job title. |
string | $country_code | Matches members with a location in a specific country. Values are defined in by ISO 3166 standard. Country codes must be in all lower case. |
integer | $postal_code | Matches members centered around a Postal Code. Must be combined with the country-code parameter. Not supported for all countries. |
integer | $distance | Matches members within a distance from a central point. This is measured in miles. |
string | $facets | Facet buckets to return, e.g. location. |
array | $facet | Array of facet values to search over. Contains values for company, date-posted, location, job-function, industry, and salary, in exactly this order, null must be specified for an element if no value. |
integer | $start | Starting location within the result set for paginated returns. |
integer | $count | The number of results returned. |
string | $sort | Controls the search result order. There are four options: R (relationship), DA (date-posted-asc), DD (date-posted-desc). |
Définition à la ligne 247 du fichier jobs.php.