WPI: GetWPIProductById
This commit is contained in:
parent
b62b699461
commit
7ceccd4c10
7 changed files with 437 additions and 238 deletions
|
@ -394,7 +394,15 @@ public partial class HeliconZoo_Settings : WebsitePanelControlBase, IHostingServ
|
|||
|
||||
private static WPIProduct[] RequestHostingPackages()
|
||||
{
|
||||
return ES.Services.Servers.GetWPIProducts(PanelRequest.ServerId, null, "ZooPackage");
|
||||
List<WPIProduct> result = new List<WPIProduct>();
|
||||
result.Add(ES.Services.Servers.GetWPIProductById(PanelRequest.ServerId, "HeliconZooModule"));
|
||||
result.AddRange(ES.Services.Servers.GetWPIProducts(PanelRequest.ServerId, null, "ZooPackage"));
|
||||
|
||||
|
||||
|
||||
|
||||
return result.ToArray();
|
||||
|
||||
}
|
||||
|
||||
protected string AddUpgradeRemoveText(WPIProduct wpiProduct)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue