Beispiel #1
0
 public PluginDetails(Plugins plugin)
 {
     switch (plugin)
     {
       case Plugins.DriveFreeSpace:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"process\DriveFreeSpace.dll");
     this.name = "DriveFreeSpace";
     break;
       case Plugins.FanartHandler:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"process\FanartHandler.dll");
     this.name = "Fanart Handler";
     break;
       case Plugins.ForTheRecord:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"windows\ForTheRecord.UI.MediaPortal.dll");
     this.name = "For The Record TV";
     break;
       case Plugins.HTPCInfo:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"windows\HTPCInfo.dll");
     this.name = "HTPC Info";
     break;
       case Plugins.InfoService:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"windows\HTPCInfo.dll");
     this.name = "InfoService";
     break;
       case Plugins.MovingPictures:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"windows\MovingPictures.dll");
     this.name = "Moving Pictures";
     break;
       case Plugins.MPTVSeries:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"windows\MP-TVSeries.dll");
     this.name = "MP-TVSeries";
     break;
       case Plugins.PowerControl:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"windows\PowerControl.dll");
     this.name = "Power Controls";
     break;
       case Plugins.SleepControl:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"windows\SleepControl.dll");
     this.name = "Sleep Control";
     break;
       case Plugins.Stocks:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"windows\Stocks.dll");
     this.name = "Stocks";
     break;
       case Plugins.UpdateControl:
     this.filename = Path.Combine(SkinInfo.mpPaths.pluginPath, @"windows\UpdateControl.dll");
     this.name = "Update Control";
     break;
     }
 }
Beispiel #2
0
        public bool pluginEnabled(Plugins plugin)
        {
            PluginDetails pd = new PluginDetails(plugin);

              // check if plugin is enabled/disabled
              // if we dont find they entry then we assume enabled as we know it
              // is installed so most likley configuration has not yet been run
              // to write the entry to MediaPortal.xml
              string returnValue = null;

              try
              {
            using (MediaPortal.Profile.Settings xmlreader = new MediaPortal.Profile.MPSettings())
            {
              returnValue = xmlreader.GetValueAsString("plugins", pd.name, "");
            }
              }
              catch (Exception e)
              {
            //showError("Error reading MediaPortal.xml : " + e.Message, formStreamedMpEditor.errorCode.readError);
              }

              if (string.IsNullOrEmpty(returnValue))
              {
            // error looking up in mediaportal.xml, check if file exists
            if (string.IsNullOrEmpty(pd.filename))
              return false;
            else
              return File.Exists(pd.filename);
              }

              if (returnValue.ToLower() == "no")
            return false;
              else
            return true;
        }