You are here

function linkicon_theme in Link Icon 7

Same name and namespace in other branches
  1. 8 linkicon.module \linkicon_theme()

Implements hook_theme().

File

./linkicon.module, line 45
A link field formatter to create icon classes based on predefined titles.

Code

function linkicon_theme($existing, $type, $theme, $path) {
  $common = array(
    'render element' => 'element',
    'file' => 'linkicon.theme.inc',
  );
  return array(
    'linkicon' => $common,
    'linkicon_item' => $common,
  );
}