DashboardNavModule::handleUserPreferencesSectionLandingPage PHP Method

handleUserPreferencesSectionLandingPage() private method

    private function handleUserPreferencesSectionLandingPage()
    {
        if ($session = Gdn::session()) {
            $landingPages = $session->getPreference('DashboardNav.SectionLandingPages');
            foreach (self::$sectionsInfo as $key => $section) {
                if (array_key_exists($key, $landingPages)) {
                    self::$sectionsInfo[$key]['url'] = $landingPages[$key];
                }
            }
        }
    }