You are here

function social_media_links_theme in Social Media Links Block and Field 7

Same name and namespace in other branches
  1. 8.2 social_media_links.module \social_media_links_theme()

Implements hook_theme().

File

./social_media_links.module, line 10
Functions for the Social Media Links module.

Code

function social_media_links_theme($existing, $type, $theme, $path) {
  return array(
    'social_media_links_platforms_table' => array(
      'render element' => 'form',
    ),
    'social_media_links_platforms' => array(
      'variables' => array(
        'platform_values' => array(),
        'icon_style' => array(),
        'appearance' => array(),
        'link_attributes' => array(),
        'attributes' => array(),
      ),
    ),
    'social_media_links_platform' => array(
      'variables' => array(
        'info' => array(),
        'name' => NULL,
        'value' => NULL,
        'icon_style' => array(),
        'appearance' => array(),
        'attributes' => array(),
      ),
    ),
  );
}