Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
getStatus ($status) | |
getComments ($status, $limit=0, $offset=0, $until=null, $since=null) | |
createComment ($status, $message) | |
deleteComment ($comment) | |
getLikes ($status, $limit=0, $offset=0, $until=null, $since=null) | |
createLike ($status) | |
deleteLike ($status) | |
Fonctions membres publiques inherited from JFacebookObject | |
__construct (JRegistry $options=null, JHttp $client=null, JFacebookOAuth $oauth=null) | |
sendRequest ($path, $data= '', array $headers=null, $limit=0, $offset=0, $until=null, $since=null) | |
get ($object) | |
getConnection ($object, $connection=null, $extra_fields= '', $limit=0, $offset=0, $until=null, $since=null) | |
createConnection ($object, $connection=null, $parameters=null, array $headers=null) | |
deleteConnection ($object, $connection=null, $extra_fields= '') | |
setOAuth ($oauth) | |
getOAuth () |
Additional Inherited Members | |
Fonctions membres protégées inherited from JFacebookObject | |
fetchUrl ($path, $limit=0, $offset=0, $until=null, $since=null) | |
Attributs protégés inherited from JFacebookObject | |
$options | |
$client | |
$oauth |
Définition à la ligne 23 du fichier status.php.
JFacebookStatus::createComment | ( | $status, | |
$message | |||
) |
Method to post a comment to the status message. Requires authentication and publish_stream and user_status or friends_status permission.
string | $status | The status message id. |
string | $message | The comment's text. |
Définition à la ligne 67 du fichier status.php.
JFacebookStatus::createLike | ( | $status | ) |
Method to like status message. Requires authentication and publish_stream and user_status or friends_status permission.
string | $status | The status message id. |
Définition à la ligne 116 du fichier status.php.
JFacebookStatus::deleteComment | ( | $comment | ) |
Method to delete a comment. Requires authentication and publish_stream and user_status or friends_status permission.
string | $comment | The comment's id. |
Définition à la ligne 84 du fichier status.php.
JFacebookStatus::deleteLike | ( | $status | ) |
Method to unlike a status message. Requires authentication and publish_stream and user_status or friends_status permission.
string | $status | The status message id. |
Définition à la ligne 130 du fichier status.php.
JFacebookStatus::getComments | ( | $status, | |
$limit = 0 , |
|||
$offset = 0 , |
|||
$until = null , |
|||
$since = null |
|||
) |
Method to get a status message's comments. Requires authentication.
string | $status | The status message id. |
integer | $limit | The number of objects per page. |
integer | $offset | The object's number on the page. |
string | $until | A unix timestamp or any date accepted by strtotime. |
string | $since | A unix timestamp or any date accepted by strtotime. |
Définition à la ligne 52 du fichier status.php.
JFacebookStatus::getLikes | ( | $status, | |
$limit = 0 , |
|||
$offset = 0 , |
|||
$until = null , |
|||
$since = null |
|||
) |
Method to get a status message's likes. Requires authentication.
string | $status | The status message id. |
integer | $limit | The number of objects per page. |
integer | $offset | The object's number on the page. |
string | $until | A unix timestamp or any date accepted by strtotime. |
string | $since | A unix timestamp or any date accepted by strtotime. |
Définition à la ligne 102 du fichier status.php.
JFacebookStatus::getStatus | ( | $status | ) |
Method to get a status message. Requires authentication.
string | $status | The status message id. |
Définition à la ligne 34 du fichier status.php.