micmania1/silverstripe-facebook

There is no license information available for the latest version (1.0.0) of this package.

A silverstripe module to integrate Silverstripe with Facebook

Installs: 73

Dependents: 0

Suggesters: 0

Security: 0

Stars: 9

Watchers: 4

Forks: 3

Open Issues: 4

Type:silverstripe-module

1.0.0 2013-07-10 21:21 UTC

This package is auto-updated.

Last update: 2024-03-24 12:15:13 UTC


README

This module is to allow integration between Facebook and Silverstripe. Its based (and ported from) the sstwitter module.

Features

  • CMS interface to integrate Silverstripe with a Facebook application & connect an account to the website.
  • Connect/Disconnect Member's to Facebook accounts.
  • Facebook signup.
  • Enable/Disable Facebook login & signup through the CMS.
  • Developer Access to Facebook API through the official Facebook PHP SDK.

Usage

$FacebookConnectURL (FacebookApp::connect_url()) This displays a link where a logged in user will be taken through the Facebook authentication process to connect their Facebook account.

$FacebookDisconnectURL (FacebookApp::disconnect_url()) This will disassociate the Facebook account from the Member.

$FacebookLoginURL (FacebookApp::login_url()) This will return a url whereby the user can login to their Silverstripe account through Facebook. It will sign the user up if a Facebook account connect be found and Signup is enabled.

<a href="$FacebookConnectURL">Connect</a><br />
<a href="$FacebookDisconnectURL">Disconnect</a><br />
<% if FacebookLoginURL %>
    <a href="$FacebookLoginURL">Login</a>
<% else %>
    Facebook Login is disabled.
<% end_if %>

Extending

Silverstripe Facebook allows you to use the full power of Facebook's PHP SDK. You can access this by referencing FacebookApp->getFacebook().