PluginsManager.cs
Description du code
PluginsManager.cs est un fichier du projet BrolDev.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/broldev/src/.
Projet BrolDev : Librairie de composants réutilisables pour les applications BrolDev en CSharp.
Code source ou contenu du fichier
Code c# (PluginsManager.cs) (123 lignes)
using System.Collections.Generic; using System.IO; using be.gaudry.model.enums; namespace be.gaudry.model.config { public class PluginsManager { #region declarations private Dictionary<PLUGIN, Plugin> plugins; private bool brolexplorerPlgAvailable, photobrolPlgAvailable, renamerPlgAvailable, zipPlgAvailable, brolFilePropertiesAvailable, brolExifAvailable; #endregion #region singleton static PluginsManager instance = null; private PluginsManager() { brolexplorerPlgAvailable = plugAvailable("BrolExplorer.dll", PLUGIN.explorer); photobrolPlgAvailable = plugAvailable("PhotoBrol.dll", PLUGIN.photo); renamerPlgAvailable = plugAvailable("BrolRenamer.exe", PLUGIN.renamer); zipPlgAvailable = plugAvailable("BrolZip.exe", PLUGIN.zip); brolFilePropertiesAvailable = plugAvailable("BrolFilePropertiesViewer.exe", PLUGIN.metadata); brolExifAvailable = plugAvailable("BrolExifEditor.exe", PLUGIN.exif); plugAvailable("BrolFileStats.exe", PLUGIN.stats); } public static PluginsManager Instance { get { lock (padlock) { if (instance == null) { } return instance; } } } #endregion #region private methods /// <summary> /// Test if a plugin is available for bibliobrol /// if it is available, add it in the plugins list /// </summary> /// <param name="plugName"></param> /// <returns></returns> private bool plugAvailable(string plugName, PLUGIN plugin) { if (File.Exists(plugName)) { return true; } return false; } #endregion #region static methods /* public static Plugin addPlugin(string plugName) { Plugin p = null; if (File.Exists(plugName)) { p = new Plugin("", plugName); instance.plugins.Add(plugName,p); } return p; }*/ public static Plugin getPlugin(PLUGIN plugin) { if (Instance.plugins.ContainsKey(plugin)) { return Instance.plugins[plugin]; } return null; } public static int Count { get { return Instance.plugins.Count; } } /// <summary> /// Get true if bibliobrol can use brolexplorer plugin /// </summary> public static bool BrolExplorerPlugAvailable { get { return Instance.brolexplorerPlgAvailable; } } /// <summary> /// Get true if bibliobrol can use photobrol plugin /// </summary> public static bool PhotoBrolPlugAvailable { get { return Instance.photobrolPlgAvailable; } } public static List<Plugin> Plugins { get { foreach (KeyValuePair<PLUGIN, Plugin> kvp in Instance.plugins) { plugins.Add(kvp.Value); } return plugins; } } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1732344850 23/11/2024 07:54:10 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 16/10/2009, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/cs-broldev-source-rf-model/config/PluginsManager.cs.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.