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 = '') |
29 calls to fp_render_section_title()
- admin.module in modules/
admin/ admin.module - The administrative configurations for FlightPath.
- 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.history.inc in modules/
advise/ advise.history.inc - advise.module in modules/
advise/ advise.module - advise_display_history in modules/
advise/ advise.history.inc - Displays the history tab on screen.
File
- includes/
theme.inc, line 2170
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;
}
