Contao\PageForward::getRedirectStatusCode PHP Method

getRedirectStatusCode() protected method

Return the redirect status code
protected getRedirectStatusCode ( PageModel $objPage ) : integer
$objPage PageModel
return integer
    protected function getRedirectStatusCode($objPage)
    {
        return $objPage->redirect == 'temporary' ? 302 : 301;
    }