You are here

public function fb_social_default::render in Facebook social plugins integration 7.2

Same name and namespace in other branches
  1. 6.2 plugins/boxes/fb_social_default.inc \fb_social_default::render()

Implementation of boxes_content::render().

Overrides boxes_box::render

9 calls to fb_social_default::render()
fb_social_activityfeed::render in plugins/boxes/fb_social_activityfeed.inc
Implementation of boxes_content::render().
fb_social_comments::render in plugins/boxes/fb_social_comments.inc
Implementation of boxes_content::render().
fb_social_facepile::render in plugins/boxes/fb_social_facepile.inc
Implementation of boxes_content::render().
fb_social_like::render in plugins/boxes/fb_social_like.inc
Implementation of boxes_content::render().
fb_social_likebox::render in plugins/boxes/fb_social_likebox.inc
Implementation of boxes_content::render().

... See full list

9 methods override fb_social_default::render()
fb_social_activityfeed::render in plugins/boxes/fb_social_activityfeed.inc
Implementation of boxes_content::render().
fb_social_comments::render in plugins/boxes/fb_social_comments.inc
Implementation of boxes_content::render().
fb_social_facepile::render in plugins/boxes/fb_social_facepile.inc
Implementation of boxes_content::render().
fb_social_like::render in plugins/boxes/fb_social_like.inc
Implementation of boxes_content::render().
fb_social_likebox::render in plugins/boxes/fb_social_likebox.inc
Implementation of boxes_content::render().

... See full list

File

plugins/boxes/fb_social_default.inc, line 33
fb_social_comments.inc

Class

fb_social_default
@file fb_social_comments.inc

Code

public function render() {
  $title = isset($this->title) ? check_plain($this->title) : NULL;
  $block['title'] = $title;
  $block['subject'] = $title;
  $block['delta'] = $this->delta;
  $block['content'] = fb_social_box_view($this);
  return $block;
}