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