Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JFacebookComment
+ Graphe d'héritage de JFacebookComment:
+ Graphe de collaboration de JFacebookComment:

Liste de tous les membres

Fonctions membres publiques

 getComment ($comment)
 deleteComment ($comment)
 getComments ($comment, $limit=0, $offset=0, $until=null, $since=null)
 createComment ($comment, $message)
 getLikes ($comment, $limit=0, $offset=0, $until=null, $since=null)
 createLike ($comment)
 deleteLike ($comment)
- 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

Description détaillée

Définition à la ligne 23 du fichier comment.php.


Documentation des fonctions membres

JFacebookComment::createComment (   $comment,
  $message 
)

Method to comment on a comment. Requires authentication with publish_stream permission.

Paramètres:
string$commentThe comment id.
string$messageThe comment's text.
Renvoie:
mixed The decoded JSON response or false if the client is not authenticated.
Depuis:
13.1

Définition à la ligne 81 du fichier comment.php.

{
// Set POST request parameters.
$data = array();
$data['message'] = $message;
return $this->createConnection($comment, 'comments', $data);
}
JFacebookComment::createLike (   $comment)

Method to like a comment. Requires authentication and publish_stram permission.

Paramètres:
string$commentThe comment id.
Renvoie:
boolean Returns true if successful, and false otherwise.
Depuis:
13.1

Définition à la ligne 117 du fichier comment.php.

{
return $this->createConnection($comment, 'likes');
}
JFacebookComment::deleteComment (   $comment)

Method to delete a comment. Requires authentication and publish_stream permission.

Paramètres:
string$commentThe comment id.
Renvoie:
boolean Returns true if successful, and false otherwise.
Depuis:
13.1

Définition à la ligne 48 du fichier comment.php.

{
return $this->deleteConnection($comment);
}
JFacebookComment::deleteLike (   $comment)

Method to unlike a comment. Requires authentication and publish_stram permission.

Paramètres:
string$commentThe comment id.
Renvoie:
boolean Returns true if successful, and false otherwise.
Depuis:
13.1

Définition à la ligne 131 du fichier comment.php.

{
return $this->deleteConnection($comment, 'likes');
}
JFacebookComment::getComment (   $comment)

Method to get a comment. Requires authentication.

Paramètres:
string$commentThe comment id.
Renvoie:
mixed The decoded JSON response or false if the client is not authenticated.
Depuis:
13.1

Définition à la ligne 34 du fichier comment.php.

{
return $this->get($comment);
}
JFacebookComment::getComments (   $comment,
  $limit = 0,
  $offset = 0,
  $until = null,
  $since = null 
)

Method to get a comment's comments. Requires authentication.

Paramètres:
string$commentThe comment id.
integer$limitThe number of objects per page.
integer$offsetThe object's number on the page.
string$untilA unix timestamp or any date accepted by strtotime.
string$sinceA unix timestamp or any date accepted by strtotime.
Renvoie:
mixed The decoded JSON response or false if the client is not authenticated.
Depuis:
13.1

Définition à la ligne 66 du fichier comment.php.

{
return $this->getConnection($comment, 'comments', '', $limit, $offset, $until, $since);
}
JFacebookComment::getLikes (   $comment,
  $limit = 0,
  $offset = 0,
  $until = null,
  $since = null 
)

Method to get comment's likes. Requires authentication.

Paramètres:
string$commentThe comment id.
integer$limitThe number of objects per page.
integer$offsetThe object's number on the page.
string$untilA unix timestamp or any date accepted by strtotime.
string$sinceA unix timestamp or any date accepted by strtotime.
Renvoie:
mixed The decoded JSON response or false if the client is not authenticated.
Depuis:
13.1

Définition à la ligne 103 du fichier comment.php.

{
return $this->getConnection($comment, 'likes', '', $limit, $offset, $until, $since);
}

La documentation de cette classe a été générée à partir du fichier suivant :