function theme_views_maintenance_html_placeholder in Views Maintenance 7
Same name and namespace in other branches
- 6 theme/theme.inc \theme_views_maintenance_html_placeholder()
Formats HTML string for emphasized display in a placeholder inside a sentence.
Parameters
array $vars:
Return value
string
2 theme calls to theme_views_maintenance_html_placeholder()
- _views_maintenance_content_pane_title in includes/
ctools.inc - Returns content pane human-readable title wrapped with placeholder.
- _views_maintenance_page_title in includes/
ctools.inc - Returns page task name wrapped with placeholder.
File
- theme/
theme.inc, line 353 - Preprocessing and theming functions for Views Maintenance.
Code
function theme_views_maintenance_html_placeholder($vars) {
return '<em>' . $vars['html'] . '</em>';
}