You are here

function jquery_social_stream_bean_types in jQuery social stream 7

Same name and namespace in other branches
  1. 7.2 jquery_social_stream.module \jquery_social_stream_bean_types()

Implements hook_bean_types().

File

./jquery_social_stream.module, line 130
Code for the Campaign social media module.

Code

function jquery_social_stream_bean_types() {
  $plugins = array();
  $plugins['jquery_social_stream'] = array(
    'label' => t('jQuery social stream'),
    'handler' => array(
      'class' => 'JquerySocialStreamBean',
      'parent' => 'bean',
      'path' => drupal_get_path('module', 'jquery_social_stream') . '/plugins/bean',
      'file' => 'jquery_social_stream.inc',
    ),
  );
  return $plugins;
}