function _facebook_pull_default_options in Facebook Pull 7.3
Helper function to return default api options array.
2 calls to _facebook_pull_default_options()
- facebook_pull_settings in ./
facebook_pull.module - Form: Administration page settings.
- _facebook_pull_render_block in ./
facebook_pull.module - Render a single block using the configured settings.
File
- ./
facebook_pull.module, line 428 - Facebook Pull Module for getting content from Facebook graph.
Code
function _facebook_pull_default_options() {
return array(
'picture' => 'picture',
'message' => 'message',
'from' => 'from',
'type' => 'type',
'created_time' => 'created_time',
'link' => 'link',
'description' => 'description',
'name' => 'name',
);
}