/**
  * Checks whether passed route is the same as in request
  *
  * @param string $route
  *
  * @return bool
  */
 public function checkRouteIsActive($route)
 {
     $currentRoute = $this->requestHelper->getAttribute('_route');
     return $route === $currentRoute;
 }