function visitors_get_title in Visitors 7.2
Same name and namespace in other branches
- 8 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 hook_exit().
File
- ./
visitors.exit.inc, line 111 - Implements hook_exit().
Code
function visitors_get_title() {
return htmlspecialchars_decode(drupal_get_title(), ENT_QUOTES);
}