SobekCM.Core.ApplicationState.Portal.Is_Possible_Web_Skin C# (CSharp) Method

Is_Possible_Web_Skin() public method

Flag indicates if the provided web skin code is permitted within this portal
public Is_Possible_Web_Skin ( string Web_Skin_Code ) : bool
Web_Skin_Code string Web skin code to check
return bool
        public bool Is_Possible_Web_Skin(string Web_Skin_Code)
        {
            // If this collection is not defined, then it is not limiting
            return PossibleSkins == null || PossibleSkins.Contains(Web_Skin_Code.ToLower());
        }