You are here

function html5_tools_theme in HTML5 Tools 6

Same name and namespace in other branches
  1. 7 html5_tools.module \html5_tools_theme()

Implementaion of hook_theme().

File

./html5_tools.module, line 17

Code

function html5_tools_theme() {
  return array(
    'html5_tag' => array(
      'arguments' => array(
        'data' => array(),
      ),
    ),
    'node_submitted' => array(
      'arguments' => array(
        'node',
      ),
      'function' => 'theme_html5_tools_node_submitted',
    ),
  );
}