using System; using System.Collections; using CMS.FormControls; using CMS.SettingsProvider; using CMS.PortalEngine; using CMS.UIControls; public partial class CMSModules_Objects_FormControls_Cloning_CMS_LayoutSettings : CloneSettingsControl { #region "Properties" /// /// Gets properties hashtable. /// public override Hashtable CustomParameters { get { return GetProperties(); } } #endregion #region "Methods" protected void Page_Load(object sender, EventArgs e) { lblFiles.ToolTip = GetString("clonning.settings.layouts.appthemesfolder.tooltip"); } /// /// Returns properties hashtable. /// private Hashtable GetProperties() { Hashtable result = new Hashtable(); result[PortalObjectType.PAGELAYOUT + ".appthemes"] = chkFiles.Checked; return result; } #endregion }