You are here

function fbconnect_stream_publish_init in Facebook Connect 6.2

Same name and namespace in other branches
  1. 8.2 fbconnect_stream_publish/fbconnect_stream_publish.module \fbconnect_stream_publish_init()
  2. 7.2 fbconnect_stream_publish/fbconnect_stream_publish.module \fbconnect_stream_publish_init()

Impletementation of hook_init().

File

fbconnect_stream_publish/fbconnect_stream_publish.module, line 16
@todo.

Code

function fbconnect_stream_publish_init() {
  if (isset($_SESSION['fbconnect_feed'])) {
    fbconnect_stream_publish_render_js($_SESSION['fbconnect_feed']);
    unset($_SESSION['fbconnect_feed']);
  }
}