@todo This is a temporary function pending refactoring Drupal to use Symfony's Request object exclusively.
function _current_path($path = NULL) {
static $current_path = '';
if (isset($path)) {
$current_path = $path;
}
return $current_path;
}