You are here

function tabs_theme in Tabs (jQuery UI tabs) 6

Implementation of hook_theme()

File

./tabs.module, line 31
API for creating tabbed pages.

Code

function tabs_theme() {
  return array(
    'tabset' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'tabs.theme.inc',
    ),
    'tabpage' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'tabs.theme.inc',
    ),
  );
}