You are here

public function facebook_pull_box::options_defaults in Facebook Pull 6

Same name and namespace in other branches
  1. 7.3 plugins/facebook_pull_box.inc \facebook_pull_box::options_defaults()
  2. 7 plugins/facebook_pull_box.inc \facebook_pull_box::options_defaults()
  3. 7.2 plugins/facebook_pull_box.inc \facebook_pull_box::options_defaults()

Implementation of boxes_content::options_defaults().

Overrides boxes_box::options_defaults

File

plugins/facebook_pull_box.inc, line 11

Class

facebook_pull_box
Boxes plugin for the Facebook Pull module.

Code

public function options_defaults() {
  return array(
    'app_id' => variable_get('facebook_pull_app_id', ''),
    'app_secret' => variable_get('facebook_pull_app_secret', ''),
    'graph_id' => variable_get('facebook_pull_graph_id', ''),
    'object_type' => variable_get('facebook_pull_object_type', ''),
    'limit' => variable_get('facebook_pull_limit', ''),
  );
}