using System; using System.Collections; using CMS.FormControls; using CMS.SettingsProvider; using CMS.Newsletter; using CMS.UIControls; public partial class CMSModules_Newsletters_FormControls_Cloning_Newsletter_IssueSettings : CloneSettingsControl { #region "Properties" /// /// Excluded other binding tasks. /// public override string ExcludedOtherBindingTypes { get { return NewsletterObjectType.NEWSLETTEROPENEDEMAIL; } } /// /// Excluded other binding tasks. /// public override string ExcludedChildTypes { get { return NewsletterObjectType.NEWSLETTERLINK; } } /// /// Hide the control /// public override bool DisplayControl { get { return false; } } #endregion }