You are here

function theme_views_maintenance_html_placeholder in Views Maintenance 6

Same name and namespace in other branches
  1. 7 theme/theme.inc \theme_views_maintenance_html_placeholder()

Formats HTML string for emphasized display in a placeholder inside a sentence.

Parameters

string $html:

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 346
Preprocessing and theming functions for Views Maintenance.

Code

function theme_views_maintenance_html_placeholder($html = '') {
  return '<em>' . $html . '</em>';
}