function cck_list_theme in CCK List 6
Implementation of hook_theme().
File
- ./
cck_list.module, line 16 - Defines a field type that outputs data in a list.
Code
function cck_list_theme() {
return array(
'cck_list' => array(
'arguments' => array(
'element' => NULL,
),
),
'cck_list_formatter_list_ordered' => array(
'arguments' => array(
'element' => NULL,
),
'function' => 'theme_cck_list_formatter',
),
'cck_list_formatter_list_unordered' => array(
'arguments' => array(
'element' => NULL,
),
'function' => 'theme_cck_list_formatter',
),
);
}