function fp_render_section_title
Search API
7.x theme.inc | fp_render_section_title($text, $extra_class = '') |
6.x theme.inc | fp_render_section_title($text, $extra_class = '') |
19 calls to fp_render_section_title()
- admin_display_main in modules/
admin/ admin.module - This is the "main" page for the admin module. It's what the user first sees when the click to go to the Admin page.
- advise_display_history in modules/
advise/ advise.history.inc - Displays the history tab on screen.
- advise_popup_display_summary in modules/
advise/ advise.history.inc - Displays the printable advising summary.
- advise_what_if_selection_form in modules/
advise/ advise.module - AdvisingScreen::display_popup_substitute in classes/
AdvisingScreen.php - This is used to display the substitution popup to a user, to let them actually make a substitution.
File
- includes/
theme.inc, line 2151
Code
function fp_render_section_title($text, $extra_class = '') {
$extra_class .= " section-box-text-" . fp_get_machine_readable(strtolower(trim($text)));
$rtn = "<div class='section-box-title section-box-title-$extra_class'>$text</div>";
return $rtn;
}