class fb_social_recommendations in Facebook social plugins integration 7.2
Same name and namespace in other branches
- 6.2 plugins/boxes/fb_social_recommendations.inc \fb_social_recommendations
@file fb_social_recommendations.inc
Box class for "recommendations" plugin type
Hierarchy
- class \boxes_box
- class \fb_social_default
- class \fb_social_recommendations
- class \fb_social_default
Expanded class hierarchy of fb_social_recommendations
1 string reference to 'fb_social_recommendations'
- fb_social_boxes_plugins in ./
fb_social.module - Implementation of hook_boxes_plugins().
File
- plugins/
boxes/ fb_social_recommendations.inc, line 9 - fb_social_recommendations.inc
View source
class fb_social_recommendations extends fb_social_default {
public $fb_plugin_name;
protected function __construct() {
parent::__construct();
$this->fb_plugin_name = 'recommendations';
}
/**
* Implementation of boxes_content::options_defaults().
*/
public function options_defaults() {
return parent::options_defaults();
}
/**
* Implementation of boxes_content::options_form().
*/
public function options_form(&$form_state) {
return parent::options_form($form_state);
}
/**
* Implementation of boxes_content::render().
*/
public function render() {
$block = parent::render();
return $block;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
boxes_box:: |
static | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | function | Returns the block cache settings for this box. Subclasses can override this to perform more intricate operations around deciding the cache settings of the specific box instance. | |
boxes_box:: |
public | function | Delete a box. | |
boxes_box:: |
public static | function | Instantiate, populate and return a box object. | |
boxes_box:: |
public static | function | Load existing box by its unique identifier $delta. | |
boxes_box:: |
public static | function | Reset the boxes cache. | |
boxes_box:: |
public | function | Save a box. | |
boxes_box:: |
public | function | Declare if the box should use a multistep form for the create form. | |
fb_social_recommendations:: |
public | property | ||
fb_social_recommendations:: |
public | function |
Implementation of boxes_content::options_defaults(). Overrides fb_social_default:: |
|
fb_social_recommendations:: |
public | function |
Implementation of boxes_content::options_form(). Overrides fb_social_default:: |
|
fb_social_recommendations:: |
public | function |
Implementation of boxes_content::render(). Overrides fb_social_default:: |
|
fb_social_recommendations:: |
protected | function |
Create a new box. Overrides boxes_box:: |