HomepageForDomain)) { return trim($candidate->RelativeLink(true), '/'); } } if(Object::has_extension('SiteTree', 'Translatable')) { if($link = Translatable::get_homepage_link_by_locale(Translatable::get_current_locale())) return $link; } return self::get_default_homepage_link(); } /** * Gets the link that denotes the homepage if there is not one explicitly defined for this HTTP_HOST value. * * @return string */ public static function get_default_homepage_link() { return self::$default_homepage_link; } /** * Returns TRUE if a request to a certain page should be redirected to the site root (i.e. if the page acts as the * home page). * * @param SiteTree $page * @return bool */ public static function should_be_on_root(SiteTree $page) { if(!self::$is_at_root && self::get_homepage_link() == trim($page->RelativeLink(true), '/')) { return !( $page->hasExtension('Translatable') && $page->Locale && $page->Locale != Translatable::default_locale() ); } return false; } /** * @deprecated 2.4 Use {@link RootURLController::get_homepage_link()} */ public static function get_homepage_urlsegment() { user_error ( 'RootURLController::get_homepage_urlsegment() is deprecated, please use get_homepage_link()', E_USER_NOTICE ); return self::get_homepage_link(); } /** * @param HTTPRequest $request * @return HTTPResponse */ public function handleRequest(HTTPRequest $request) { self::$is_at_root = true; $this->pushCurrent(); $this->init(); if(!DB::isActive() || !ClassInfo::hasTable('SiteTree')) { $this->response = new HTTPResponse(); $this->response->redirect('dev/build/?returnURL='); return $this->response; } $request = new HTTPRequest ( $request->httpMethod(), self::get_homepage_link() . '/', $request->getVars(), $request->postVars() ); $request->match('$URLSegment//$Action', true); $controller = new ModelAsController(); $result = $controller->handleRequest($request); $this->popCurrent(); return $result; } }