SobekCM.Core.Settings.System_Settings.Help_URL C# (CSharp) Method

Help_URL() public method

URL used for the main help pages about this system's basic functionality
public Help_URL ( string Current_Base_URL ) : string
Current_Base_URL string Current base url for the current user's request
return string
        public string Help_URL(string Current_Base_URL)
        {
            return String.IsNullOrEmpty(Help_URL_Base) ? Current_Base_URL : Help_URL_Base;
        }