MetaAction::FetchActionsFromCache PHP Method

FetchActionsFromCache() private static method

private static FetchActionsFromCache ( )
    private static function FetchActionsFromCache()
    {
        if (CampCache::IsEnabled()) {
            $actions = CampCache::singleton()->fetch(self::CACHE_KEY_LIST_OF_ACTIONS);
            if ($actions !== false && is_array($actions)) {
                self::$m_availableActions = $actions;
                return true;
            }
        }
        return false;
    }