فهرست منبع

Admin::buildShow doesn't call configureShowFields in any attached AdminExtensions - AdminExtension contains this method though, so assume the intention was for it to call it.

Ben Lumley 13 سال پیش
والد
کامیت
17dacc3606
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      Admin/Admin.php

+ 4 - 0
Admin/Admin.php

@@ -616,6 +616,10 @@ abstract class Admin implements AdminInterface, DomainObjectInterface
         $this->configureShowField($mapper); // deprecated, use configureShowFields instead
         $this->configureShowFields($mapper);
 
+        foreach($this->getExtensions() as $extension) {
+            $extension->configureShowFields($mapper);
+        }
+
         $this->show = $collection;
     }