You are here

function mobile_tools_theme in Mobile Tools 6.3

Implementation of hook_theme()

File

./mobile_tools.module, line 156
Mobile Tools provides a range of functionality assisting in creating a mobile Drupal site . this functionality contains:

Code

function mobile_tools_theme() {
  $templates['mobile_tools_header'] = array(
    'template' => 'mobile-tools-header',
    'arguments' => array(),
    'path' => drupal_get_path('module', 'mobile_tools') . '/theme',
  );
  return $templates;
}