function theme_cmis_query_results in CMIS API 6.3
Same name and namespace in other branches
- 6.4 cmis_query/cmis_query.module \theme_cmis_query_results()
- 6.2 cmis_query/cmis_query.theme.inc \theme_cmis_query_results()
- 7.2 cmis_query/cmis_query.module \theme_cmis_query_results()
- 7 cmis_query/cmis_query.module \theme_cmis_query_results()
Theme function for CMIS query search results
1 theme call to theme_cmis_query_results()
- cmis_query_view in cmis_query/
cmis_query.module - Implementation of hook_view()
File
- cmis_query/
cmis_query.module, line 127 - Search functions
Code
function theme_cmis_query_results($rows) {
return theme('cmis_browser_browse_children', array(
'children' => $rows,
));
}