You are here

function flags_theme in Flags 8

Implements hook_theme().

File

./flags.module, line 9

Code

function flags_theme($existing, $type, $theme, $path) {
  return array(
    'flags' => array(
      'variables' => array(
        'code' => null,
        'source' => $type,
        'tag' => 'span',
        'attributes' => array(),
      ),
    ),
  );
}