Subtext.Framework.UI.Skinning.ScriptElementCollectionRenderer.GetSkinPath C# (CSharp) Method

GetSkinPath() private static method

Gets the skin path.
private static GetSkinPath ( string skinTemplateFolder ) : string
skinTemplateFolder string Name of the skin.
return string
        private static string GetSkinPath(string skinTemplateFolder)
        {
            string applicationPath = HttpContext.Current.Request.ApplicationPath;
            return (applicationPath == "/" ? String.Empty : applicationPath) + "/Skins/" + skinTemplateFolder + "/";
        }