function tft_theme_item_operation_links in Taxonomy File Tree 7.2
Helper function to render the item operation links.
Parameters
array $links:
Return value
string
Related topics
1 call to tft_theme_item_operation_links()
- tft_get_content in ./
tft.module - Get the folder content and return it in an array form for the theme_table call.
File
- ./
tft.module, line 1115 - Hook implementations and module logic for TFT.
Code
function tft_theme_item_operation_links($links) {
return theme('links', array(
'links' => $links,
'attributes' => array(
'class' => array(
'inline',
),
),
));
}