You are here

function fb_social_ctools_plugin_type in Facebook social plugins integration 7.2

Implements hook_ctools_plugin_type() to inform the plugin system owns 'fb_plugin' plugin types.

"process" tells ctools that by default each plugin has some default functions named consistently after the plugin name

See also

_fb_social_ctools_plugin_fb_plugin_process()

File

./fb_social.module, line 223

Code

function fb_social_ctools_plugin_type() {
  return array(
    'fb_plugin' => array(
      'process' => '_fb_social_ctools_plugin_fb_plugin_process',
    ),
  );
}