Details
-
Type: Improvement
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.3.0-b1
-
Component/s: None
-
Labels:None
Description
Add two new Module methods
public function getAdminServiceTabs($service) { Loader::loadModels($this, ['Packages']); $package = $this->Packages->get($service->package_id); if ($package) { return $this->getAdminTabs($package); } return []; } public function getClientServiceTabs($service) { Loader::loadModels($this, ['Packages']); $package = $this->Packages->get($service->package_id); if ($package) { return $this->getClientTabs($package); } return []; }
This will allow the display of tabs to be determined base on client, config options, or other service related data.
Then we should update the tab displays to use the new methods.
Issue Links
- blocks
-
CORE-4426 Namesilo: Implement Domain Manager config options
- Closed