You are here

function easy_social_example_easy_social_widget in Easy Social 8.4

Same name and namespace in other branches
  1. 8.3 contrib/easy_social_example/easy_social_example.module \easy_social_example_easy_social_widget()

Implements hook_easy_social_widget().

File

contrib/easy_social_example/easy_social_example.module, line 12
Easy Social Example module.

Code

function easy_social_example_easy_social_widget() {
  $widgets = array();

  // The key is going to be the widget's machine_name.
  $widgets['example'] = array(
    'name' => t('Example'),
  );
  return $widgets;
}