You are here

function easy_social_example_theme 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_theme()

Implements hook_theme().

File

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

Code

function easy_social_example_theme() {
  $return = array();

  // The theme function should be named "easy_social_$WIDGET", where $WIDGET is
  // the widget's machine_name.
  $return['easy_social_example'] = array(
    'variables' => array(),
  );
  return $return;
}