function flag_lists_theme in Flag Lists 6
Same name and namespace in other branches
- 8 flag_lists.module \flag_lists_theme()
- 7.3 flag_lists.module \flag_lists_theme()
- 7 flag_lists.module \flag_lists_theme()
- 4.0.x flag_lists.module \flag_lists_theme()
Implementation of hook_theme().
File
- ./
flag_lists.module, line 214 - The Flag Lists module.
Code
function flag_lists_theme() {
$path = drupal_get_path('module', 'flag') . '/theme';
return array(
'flag_lists_list' => array(
'arguments' => array(
'content_type' => NULL,
'content_id' => NULL,
),
),
'flag_lists_admin_page' => array(
'arguments' => array(
'flags' => NULL,
),
),
'flag_lists_user_page' => array(
'arguments' => array(
'uid' => NULL,
),
),
'flag_lists_user_list' => array(
'arguments' => array(
'flag_name' => NULL,
),
),
'flag_lists_ops' => array(
'arguments' => array(
'flag' => NULL,
),
),
);
}