function visitors_get_title in Visitors 8
Same name and namespace in other branches
- 7.2 visitors.exit.inc \visitors_get_title()
- 7 visitors.exit.inc \visitors_get_title()
- 7.0 visitors.exit.inc \visitors_get_title()
Get the title of the current page.
Return value
string title of the current page
1 call to visitors_get_title()
- visitors_exit in ./
visitors.exit.inc - Implements of hook_exit().
File
- ./
visitors.exit.inc, line 103 - Implements of hook_exit().
Code
function visitors_get_title() {
return htmlspecialchars_decode(drupal_get_title(), ENT_QUOTES);
}