function fp_show_title
Search API
| 7.x theme.inc | fp_show_title($bool_show = TRUE) |
| 6.x theme.inc | fp_show_title($bool_show = TRUE) |
| 5.x theme.inc | fp_show_title($bool_show = TRUE) |
Sets whether the title should be shown on the page or not.
8 calls to fp_show_title()
- fp_render_form in includes/
render.inc - Render the form array from the callback to the screen, and set the form to save itself in our default submit handler. Valid form_types are: "system_settings" => values automatically saved to variables table. "normal" or BLANK…
- fp_set_title in includes/
misc.inc - Allows the programmer to set the title of the page, overwriting any default title.
- misc.inc in includes/
misc.inc - This file contains misc functions for FlightPath
- render.inc in includes/
render.inc - student_files.module in modules/
student_files/ student_files.module - This is the student_files module, which will facilitate uploading (securely) files to be associated with student accounts.
File
- includes/
theme.inc, line 1619
Code
function fp_show_title($bool_show = TRUE) {
$GLOBALS ["fp_set_show_title"] = $bool_show;
}
