\JFacebookEvent
Facebook API User class for the Joomla Platform.
Synopsis
class JFacebookEvent
extends JFacebookObject
{
- // Inherited members from JFacebookObject
- protected JRegistry $options;
- protected JHttp $client;
- protected JFacebookOAuth $oauth;
- // methods
- public mixed getEvent()
- public mixed getFeed()
- public mixed createLink()
- public boolean deleteLink()
- public mixed createPost()
- public boolean deletePost()
- public mixed createStatus()
- public boolean deleteStatus()
- public mixed getInvited()
- public array isInvited()
- public boolean createInvite()
- public boolean deleteInvite()
- public mixed getAttending()
- public array isAttending()
- public boolean createAttending()
- public mixed getMaybe()
- public array isMaybe()
- public boolean createMaybe()
- public mixed getDeclined()
- public array isDeclined()
- public boolean createDeclined()
- public mixed getNoreply()
- public array isNoreply()
- public string getPicture()
- public mixed getPhotos()
- public mixed createPhoto()
- public mixed getVideos()
- public mixed createVideo()
- // Inherited methods from JFacebookObject
- public void __construct()
- protected string fetchUrl()
- public mixed sendRequest()
- public mixed get()
- public mixed getConnection()
- public mixed createConnection()
- public mixed deleteConnection()
- public JFacebookObject setOAuth()
- public JFacebookOAuth getOAuth()
Hierarchy
Extends
Members
protected
- $client — JHttp
- $oauth — JFacebookOAuth
- $options — JRegistry
Methods
public
- createAttending() — Method to set the current user as attending. Requires authentication and rsvp_event permission.
- createDeclined() — Method to set the current user as declined. Requires authentication and rscp_event permission.
- createInvite() — Method to invite users to the event. Requires authentication and create_event permission.
- createLink() — Method to post a link on event's feed which the current_user is or maybe attending. Requires authentication and publish_stream permission.
- createMaybe() — Method to set the current user as maybe attending. Requires authentication and rscp_event permission.
- createPhoto() — Method to post a photo on event's wall. Requires authentication and publish_stream permission.
- createPost() — Method to post on event's wall. Message or link parameter is required. Requires authentication and publish_stream permission.
- createStatus() — Method to post a status message on behalf of the user on the event's wall. Requires authentication and publish_stream permission.
- createVideo() — Method to post a video on event's wall. Requires authentication and publish_stream permission.
- deleteInvite() — Method to delete a invitation. Note: you can only delete the invite if the current user is the event admin.
- deleteLink() — Method to delete a link. Requires authentication and publish_stream permission.
- deletePost() — Method to delete a post. Note: you can only delete the post if it was created by the current user.
- deleteStatus() — Method to delete a status. Note: you can only delete the post if it was created by the current user.
- getAttending() — Method to get the list of attending users. Requires authentication and user_events or friends_events permission.
- getDeclined() — Method to get the list of users which declined the event. Requires authentication and user_events or friends_events permission.
- getEvent() — Method to get information about an event visible to the current user. Requires authentication.
- getFeed() — Method to get the event's wall. Requires authentication.
- getInvited() — Method to get the list of invitees for the event. Requires authentication and user_events or friends_events permission.
- getMaybe() — Method to get the list of maybe attending users. Requires authentication and user_events or friends_events permission.
- getNoreply() — Method to get the list of users which have not replied to the event. Requires authentication and user_events or friends_events permission.
- getPhotos() — Method to get photos published on event's wall. Requires authentication.
- getPicture() — Method to get the event's profile picture. Requires authentication and user_events or friends_events permission.
- getVideos() — Method to get videos published on event's wall. Requires authentication.
- isAttending() — Method to check if a user is attending an event. Requires authentication and user_events or friends_events permission.
- isDeclined() — Method to check if a user responded 'no' to the event. Requires authentication and user_events or friends_events permission.
- isInvited() — Method to check if a user is invited to the event. Requires authentication and user_events or friends_events permission.
- isMaybe() — Method to check if a user is maybe attending an event. Requires authentication and user_events or friends_events permission.
- isNoreply() — Method to check if a user has not replied to the event. Requires authentication and user_events or friends_events permission.
Inherited from JFacebookObject
protected
- fetchUrl() — Method to build and return a full request URL for the request. This method will add appropriate pagination details if necessary and also prepend the API url to have a complete URL for the request.
public
- createConnection() — Method to create a connection.
- deleteConnection() — Method to delete a connection.
- get() — Method to get an object.
- getConnection() — Method to get object's connection.
- getOAuth() — Method used to get the OAuth client.
- sendRequest() — Method to send the request.
- setOAuth() — Method used to set the OAuth client.