function isbn_theme in ISBN Field 6
Implementation of hook_theme().
File
- ./
isbn.module, line 131 - Defines ISBN field types.
Code
function isbn_theme() {
return array(
'isbn_field' => array(
'arguments' => array(
'element' => NULL,
),
),
'isbn_formatter_default' => array(
'arguments' => array(
'element' => NULL,
),
),
'isbn_formatter_raw' => array(
'arguments' => array(
'element' => NULL,
),
),
'isbn_formatter_clean' => array(
'arguments' => array(
'element' => NULL,
),
),
);
}