function theme_subuser_list_item in Subuser 8
Same name and namespace in other branches
- 7.2 subuser_ui/subuser_ui.module \theme_subuser_list_item()
1 theme call to theme_subuser_list_item()
- subuser_ui_list_page in subuser_ui/
subuser_ui.module
File
- subuser_ui/
subuser_ui.module, line 177
Code
function theme_subuser_list_item($variables) {
return theme('html_tag', array(
'element' => array(
'#tag' => 'div',
'#attributes' => array(
'class' => 'subuser_listing',
),
'#value' => $variables['content'],
),
));
}