/// <summary> /// Creates a copy of the given scriptlet /// </summary> /// <param name="themeId">Name/Identifier of the theme</param> /// <param name="identifier">Identifier of scriptlet to create copy of</param> /// <param name="scriptletType">Type of scriptlet to create copy of</param> /// <returns>Copy of the given scriptlet</returns> public static Scriptlet Copy(string themeId, string identifier, ScriptletType scriptletType) { Scriptlet copy = ScriptletDataSource.Load(themeId, identifier, scriptletType, false); if (copy != null) { copy.Identifier = "Copy of " + copy.Identifier; copy.IsCustom = true; copy.ClearLoadedState(); return(copy); } return(null); }
/// <summary> /// Loads all Scriptlet objects for the given theme /// </summary> /// <returns>A collection of all Scriptlet objects in the store</returns> public static ScriptletCollection LoadAll(string themeId) { StoreSettingCollection settings = Token.Instance.Store.Settings; Hashtable ht = new Hashtable(); ScriptletCollection results = new ScriptletCollection(); //LOAD CUSTOM SCRIPTLETS FIRST string pathPart; if (string.IsNullOrEmpty(themeId)) { pathPart = "App_Data\\Scriptlets"; } else { pathPart = "App_Themes\\" + themeId + "\\Scriptlets"; if (!Directory.Exists(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, pathPart))) { pathPart = "App_Data\\Scriptlets"; } } DirectoryInfo di = new DirectoryInfo(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, pathPart + "\\Custom")); if (di.Exists) { DirectoryInfo[] folders = di.GetDirectories(); foreach (DirectoryInfo folder in folders) { ScriptletType scriptletType; try { scriptletType = (ScriptletType)Enum.Parse(typeof(ScriptletType), folder.Name, true); } catch (ArgumentException) { //FOLDER IS NOT A RECOGNIZED SCRIPTLET TYPE scriptletType = ScriptletType.Unspecified; } if (scriptletType != ScriptletType.Unspecified) { FileInfo[] files = folder.GetFiles("*.htm"); foreach (FileInfo file in files) { string identifier = Path.GetFileNameWithoutExtension(file.Name); string hashkey = scriptletType.ToString() + "_" + identifier; Scriptlet s = ScriptletDataSource.Load(themeId, identifier, scriptletType, BitFieldState.True, false); if (s != null) { ht.Add(s.ScriptletType + "_" + s.Identifier, true); results.Add(s); } } } } } //LOAD DEFAULT SCRIPTLETS NEXT di = new DirectoryInfo(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, pathPart + "\\Default")); if (di.Exists) { DirectoryInfo[] folders = di.GetDirectories(); foreach (DirectoryInfo folder in folders) { ScriptletType scriptletType; try { scriptletType = (ScriptletType)Enum.Parse(typeof(ScriptletType), folder.Name, true); } catch (ArgumentException) { //FOLDER IS NOT A RECOGNIZED SCRIPTLET TYPE scriptletType = ScriptletType.Unspecified; } if (scriptletType != ScriptletType.Unspecified) { FileInfo[] files = folder.GetFiles("*.htm"); foreach (FileInfo file in files) { string identifier = Path.GetFileNameWithoutExtension(file.Name); string hashkey = scriptletType.ToString() + "_" + identifier; if (!ht.ContainsKey(hashkey)) { Scriptlet s = ScriptletDataSource.Load(themeId, identifier, scriptletType, BitFieldState.False, false); if (s != null) { ht.Add(hashkey, true); results.Add(s); } } } } } } return(results); }