function crumbs_Router::getFrontNormalPath in Crumbs, the Breadcrumbs suite 7.2
Return value
string
File
- lib/
Router.php, line 115
Class
- crumbs_Router
- Wrapper for routing-related Drupal core functions.
Code
function getFrontNormalPath() {
if (isset($this->frontNormalPath)) {
return $this->frontNormalPath;
}
return $this->frontNormalPath = drupal_get_normal_path(variable_get('site_frontpage', 'node'));
}