MINOR if you remove the FileSubsites decorator, you wont see the dropdown in AssetAdmin, either. (from r89585)

This commit is contained in:
Tom Rix 2010-03-01 21:34:33 +00:00
parent f8ca454de7
commit a617402f69

View File

@ -88,6 +88,14 @@ class LeftAndMainSubsites extends Extension {
} }
public function SubsiteList() { public function SubsiteList() {
if ($this->owner->class == 'AssetAdmin') {
// See if the right decorator is there....
$file = new File();
if (!$file->hasExtension('FileSubsites')) {
return false;
}
}
$list = $this->Subsites(); $list = $this->Subsites();
if(Controller::curr()->hasMethod('getRequest')) $requestSubsiteID = Controller::curr()->getRequest()->getVar('SubsiteID'); if(Controller::curr()->hasMethod('getRequest')) $requestSubsiteID = Controller::curr()->getRequest()->getVar('SubsiteID');