You are here

function sexybookmarks_theme in Share Buttons, Related Posts, Content Analytics - Shareaholic 7.2

Same name and namespace in other branches
  1. 7 sexybookmarks.module \sexybookmarks_theme()

Implements hook_theme().

File

./sexybookmarks.module, line 60
Contains core functions for the SexyBookmarks module.

Code

function sexybookmarks_theme($existing, $type, $theme, $path) {
  $items = array();
  $items['sexybookmarks'] = array(
    'variables' => array(
      'id' => NULL,
      'url' => NULL,
      'title' => NULL,
      'text' => NULL,
      'profile' => NULL,
      'config' => NULL,
    ),
  );
  $items['sexybookmarks_services'] = array(
    'render element' => 'form_element',
    'file' => 'sexybookmarks_profiles.inc',
    'path' => drupal_get_path('module', 'sexybookmarks') . '/plugins/export_ui',
  );
  $items['formfactors_select'] = array(
    'render element' => 'form_element',
    'file' => 'sexybookmarks_profiles.inc',
    'path' => drupal_get_path('module', 'sexybookmarks') . '/plugins/export_ui',
  );
  $items['classic_formfactor'] = array(
    'render element' => 'form_element',
    'file' => 'sexybookmarks_profiles.inc',
    'path' => drupal_get_path('module', 'sexybookmarks') . '/plugins/export_ui',
  );
  $items['perfoption'] = array(
    'render element' => 'form_element',
    'file' => 'sexybookmarks_profiles.inc',
    'path' => drupal_get_path('module', 'sexybookmarks') . '/plugins/export_ui',
  );
  return $items;
}