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 JFacebookCheckin
+ Graphe d'héritage de JFacebookCheckin:
+ Graphe de collaboration de JFacebookCheckin:

Liste de tous les membres

Fonctions membres publiques

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


Documentation des fonctions membres

JFacebookCheckin::createComment (   $checkin,
  $message 
)

Method to post a comment to the checkin. Requires authentication and publish_stream and user_checkins or friends_checkins permission.

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

Définition à la ligne 67 du fichier checkin.php.

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

Method to like a checkin. Requires authentication and publish_stream and user_checkins or friends_checkins permission.

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

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

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

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

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

Définition à la ligne 85 du fichier checkin.php.

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

Method to unlike a checkin. Requires authentication and publish_stream permission.

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

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

{
return $this->deleteConnection($checkin, 'likes');
}
JFacebookCheckin::getCheckin (   $checkin)

Method to get a checkin. Requires authentication and user_checkins or friends_checkins permission.

Paramètres:
string$checkinThe checkin 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 checkin.php.

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

Method to get a checkin's comments. Requires authentication and user_checkins or friends_checkins permission.

Paramètres:
string$checkinThe checkin 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 52 du fichier checkin.php.

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

Method to get a checkin's likes. Requires authentication and user_checkins or friends_checkins permission.

Paramètres:
string$checkinThe checkin 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 checkin.php.

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

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