You are here

fb_social_send.inc in Facebook social plugins integration 7.2

Same filename and directory in other branches
  1. 6.2 plugins/boxes/fb_social_send.inc

fb_social_send.inc

Box class for "send" plugin type

File

plugins/boxes/fb_social_send.inc
View source
<?php

/**
 * @file fb_social_send.inc
 * 
 * Box class for "send" plugin type
 */
class fb_social_send extends fb_social_default {
  public $fb_plugin_name;
  protected function __construct() {
    parent::__construct();
    $this->fb_plugin_name = 'send';
  }

  /**
   * 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;
  }

}

Classes