vendor/sonata-project/admin-bundle/src/Admin/AbstractAdmin.php line 3210

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of the Sonata Project package.
  5.  *
  6.  * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Sonata\AdminBundle\Admin;
  12. use Doctrine\Common\Util\ClassUtils;
  13. use Knp\Menu\FactoryInterface;
  14. use Knp\Menu\ItemInterface;
  15. use Sonata\AdminBundle\Builder\DatagridBuilderInterface;
  16. use Sonata\AdminBundle\Builder\FormContractorInterface;
  17. use Sonata\AdminBundle\Builder\ListBuilderInterface;
  18. use Sonata\AdminBundle\Builder\RouteBuilderInterface;
  19. use Sonata\AdminBundle\Builder\ShowBuilderInterface;
  20. use Sonata\AdminBundle\Datagrid\DatagridInterface;
  21. use Sonata\AdminBundle\Datagrid\DatagridMapper;
  22. use Sonata\AdminBundle\Datagrid\ListMapper;
  23. use Sonata\AdminBundle\Datagrid\Pager;
  24. use Sonata\AdminBundle\Datagrid\ProxyQueryInterface;
  25. use Sonata\AdminBundle\Filter\Persister\FilterPersisterInterface;
  26. use Sonata\AdminBundle\Form\FormMapper;
  27. use Sonata\AdminBundle\Form\Type\ModelHiddenType;
  28. use Sonata\AdminBundle\Model\ModelManagerInterface;
  29. use Sonata\AdminBundle\Object\Metadata;
  30. use Sonata\AdminBundle\Route\RouteCollection;
  31. use Sonata\AdminBundle\Route\RouteGeneratorInterface;
  32. use Sonata\AdminBundle\Security\Handler\AclSecurityHandlerInterface;
  33. use Sonata\AdminBundle\Security\Handler\SecurityHandlerInterface;
  34. use Sonata\AdminBundle\Show\ShowMapper;
  35. use Sonata\AdminBundle\Templating\MutableTemplateRegistryInterface;
  36. use Sonata\AdminBundle\Translator\LabelTranslatorStrategyInterface;
  37. use Sonata\Form\Validator\Constraints\InlineConstraint;
  38. use Sonata\Form\Validator\ErrorElement;
  39. use Symfony\Component\Form\Extension\Core\Type\HiddenType;
  40. use Symfony\Component\Form\Form;
  41. use Symfony\Component\Form\FormBuilderInterface;
  42. use Symfony\Component\Form\FormEvent;
  43. use Symfony\Component\Form\FormEvents;
  44. use Symfony\Component\HttpFoundation\Request;
  45. use Symfony\Component\PropertyAccess\PropertyPath;
  46. use Symfony\Component\Routing\Generator\UrlGeneratorInterface as RoutingUrlGeneratorInterface;
  47. use Symfony\Component\Security\Acl\Model\DomainObjectInterface;
  48. use Symfony\Component\Security\Core\Exception\AccessDeniedException;
  49. use Symfony\Component\Translation\TranslatorInterface;
  50. use Symfony\Component\Validator\Validator\ValidatorInterface;
  51. /**
  52.  * @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
  53.  */
  54. abstract class AbstractAdmin implements AdminInterfaceDomainObjectInterfaceAdminTreeInterface
  55. {
  56.     public const CONTEXT_MENU 'menu';
  57.     public const CONTEXT_DASHBOARD 'dashboard';
  58.     public const CLASS_REGEX =
  59.         '@
  60.         (?:([A-Za-z0-9]*)\\\)?        # vendor name / app name
  61.         (Bundle\\\)?                  # optional bundle directory
  62.         ([A-Za-z0-9]+?)(?:Bundle)?\\\ # bundle name, with optional suffix
  63.         (
  64.             Entity|Document|Model|PHPCR|CouchDocument|Phpcr|
  65.             Doctrine\\\Orm|Doctrine\\\Phpcr|Doctrine\\\MongoDB|Doctrine\\\CouchDB
  66.         )\\\(.*)@x';
  67.     public const MOSAIC_ICON_CLASS 'fa fa-th-large fa-fw';
  68.     /**
  69.      * The list FieldDescription constructed from the configureListField method.
  70.      *
  71.      * @var array
  72.      */
  73.     protected $listFieldDescriptions = [];
  74.     /**
  75.      * The show FieldDescription constructed from the configureShowFields method.
  76.      *
  77.      * @var array
  78.      */
  79.     protected $showFieldDescriptions = [];
  80.     /**
  81.      * The list FieldDescription constructed from the configureFormField method.
  82.      *
  83.      * @var array
  84.      */
  85.     protected $formFieldDescriptions = [];
  86.     /**
  87.      * The filter FieldDescription constructed from the configureFilterField method.
  88.      *
  89.      * @var array
  90.      */
  91.     protected $filterFieldDescriptions = [];
  92.     /**
  93.      * The number of result to display in the list.
  94.      *
  95.      * @var int
  96.      */
  97.     protected $maxPerPage 32;
  98.     /**
  99.      * The maximum number of page numbers to display in the list.
  100.      *
  101.      * @var int
  102.      */
  103.     protected $maxPageLinks 25;
  104.     /**
  105.      * The base route name used to generate the routing information.
  106.      *
  107.      * @var string
  108.      */
  109.     protected $baseRouteName;
  110.     /**
  111.      * The base route pattern used to generate the routing information.
  112.      *
  113.      * @var string
  114.      */
  115.     protected $baseRoutePattern;
  116.     /**
  117.      * The base name controller used to generate the routing information.
  118.      *
  119.      * @var string
  120.      */
  121.     protected $baseControllerName;
  122.     /**
  123.      * The label class name  (used in the title/breadcrumb ...).
  124.      *
  125.      * @var string
  126.      */
  127.     protected $classnameLabel;
  128.     /**
  129.      * The translation domain to be used to translate messages.
  130.      *
  131.      * @var string
  132.      */
  133.     protected $translationDomain 'messages';
  134.     /**
  135.      * Options to set to the form (ie, validation_groups).
  136.      *
  137.      * @var array
  138.      */
  139.     protected $formOptions = [];
  140.     /**
  141.      * Default values to the datagrid.
  142.      *
  143.      * @var array
  144.      */
  145.     protected $datagridValues = [
  146.         '_page' => 1,
  147.         '_per_page' => 32,
  148.     ];
  149.     /**
  150.      * Predefined per page options.
  151.      *
  152.      * @var array
  153.      */
  154.     protected $perPageOptions = [163264128256];
  155.     /**
  156.      * Pager type.
  157.      *
  158.      * @var string
  159.      */
  160.     protected $pagerType Pager::TYPE_DEFAULT;
  161.     /**
  162.      * The code related to the admin.
  163.      *
  164.      * @var string
  165.      */
  166.     protected $code;
  167.     /**
  168.      * The label.
  169.      *
  170.      * @var string
  171.      */
  172.     protected $label;
  173.     /**
  174.      * Whether or not to persist the filters in the session.
  175.      *
  176.      * NEXT_MAJOR: remove this property
  177.      *
  178.      * @var bool
  179.      *
  180.      * @deprecated since sonata-project/admin-bundle 3.34, to be removed in 4.0.
  181.      */
  182.     protected $persistFilters false;
  183.     /**
  184.      * Array of routes related to this admin.
  185.      *
  186.      * @var RouteCollection
  187.      */
  188.     protected $routes;
  189.     /**
  190.      * The subject only set in edit/update/create mode.
  191.      *
  192.      * @var object|null
  193.      */
  194.     protected $subject;
  195.     /**
  196.      * Define a Collection of child admin, ie /admin/order/{id}/order-element/{childId}.
  197.      *
  198.      * @var array
  199.      */
  200.     protected $children = [];
  201.     /**
  202.      * Reference the parent admin.
  203.      *
  204.      * @var AdminInterface|null
  205.      */
  206.     protected $parent;
  207.     /**
  208.      * The base code route refer to the prefix used to generate the route name.
  209.      *
  210.      * NEXT_MAJOR: remove this attribute.
  211.      *
  212.      * @deprecated This attribute is deprecated since sonata-project/admin-bundle 3.24 and will be removed in 4.0
  213.      *
  214.      * @var string
  215.      */
  216.     protected $baseCodeRoute '';
  217.     /**
  218.      * NEXT_MAJOR: should be default array and private.
  219.      *
  220.      * @var string|array
  221.      */
  222.     protected $parentAssociationMapping;
  223.     /**
  224.      * Reference the parent FieldDescription related to this admin
  225.      * only set for FieldDescription which is associated to an Sub Admin instance.
  226.      *
  227.      * @var FieldDescriptionInterface
  228.      */
  229.     protected $parentFieldDescription;
  230.     /**
  231.      * If true then the current admin is part of the nested admin set (from the url).
  232.      *
  233.      * @var bool
  234.      */
  235.     protected $currentChild false;
  236.     /**
  237.      * The uniqid is used to avoid clashing with 2 admin related to the code
  238.      * ie: a Block linked to a Block.
  239.      *
  240.      * @var string
  241.      */
  242.     protected $uniqid;
  243.     /**
  244.      * The Entity or Document manager.
  245.      *
  246.      * @var ModelManagerInterface
  247.      */
  248.     protected $modelManager;
  249.     /**
  250.      * The current request object.
  251.      *
  252.      * @var Request|null
  253.      */
  254.     protected $request;
  255.     /**
  256.      * The translator component.
  257.      *
  258.      * NEXT_MAJOR: remove this property
  259.      *
  260.      * @var \Symfony\Component\Translation\TranslatorInterface
  261.      *
  262.      * @deprecated since sonata-project/admin-bundle 3.9, to be removed with 4.0
  263.      */
  264.     protected $translator;
  265.     /**
  266.      * The related form contractor.
  267.      *
  268.      * @var FormContractorInterface
  269.      */
  270.     protected $formContractor;
  271.     /**
  272.      * The related list builder.
  273.      *
  274.      * @var ListBuilderInterface
  275.      */
  276.     protected $listBuilder;
  277.     /**
  278.      * The related view builder.
  279.      *
  280.      * @var ShowBuilderInterface
  281.      */
  282.     protected $showBuilder;
  283.     /**
  284.      * The related datagrid builder.
  285.      *
  286.      * @var DatagridBuilderInterface
  287.      */
  288.     protected $datagridBuilder;
  289.     /**
  290.      * @var RouteBuilderInterface
  291.      */
  292.     protected $routeBuilder;
  293.     /**
  294.      * The datagrid instance.
  295.      *
  296.      * @var DatagridInterface|null
  297.      */
  298.     protected $datagrid;
  299.     /**
  300.      * The router instance.
  301.      *
  302.      * @var RouteGeneratorInterface|null
  303.      */
  304.     protected $routeGenerator;
  305.     /**
  306.      * The generated breadcrumbs.
  307.      *
  308.      * NEXT_MAJOR : remove this property
  309.      *
  310.      * @var array
  311.      */
  312.     protected $breadcrumbs = [];
  313.     /**
  314.      * @var SecurityHandlerInterface
  315.      */
  316.     protected $securityHandler;
  317.     /**
  318.      * @var ValidatorInterface
  319.      */
  320.     protected $validator;
  321.     /**
  322.      * The configuration pool.
  323.      *
  324.      * @var Pool
  325.      */
  326.     protected $configurationPool;
  327.     /**
  328.      * @var ItemInterface
  329.      */
  330.     protected $menu;
  331.     /**
  332.      * @var FactoryInterface
  333.      */
  334.     protected $menuFactory;
  335.     /**
  336.      * @var array<string, bool>
  337.      */
  338.     protected $loaded = [
  339.         'view_fields' => false,
  340.         'view_groups' => false,
  341.         'routes' => false,
  342.         'tab_menu' => false,
  343.     ];
  344.     /**
  345.      * @var string[]
  346.      */
  347.     protected $formTheme = [];
  348.     /**
  349.      * @var string[]
  350.      */
  351.     protected $filterTheme = [];
  352.     /**
  353.      * @var array<string, string>
  354.      *
  355.      * @deprecated since sonata-project/admin-bundle 3.34, will be dropped in 4.0. Use TemplateRegistry services instead
  356.      */
  357.     protected $templates = [];
  358.     /**
  359.      * @var AdminExtensionInterface[]
  360.      */
  361.     protected $extensions = [];
  362.     /**
  363.      * @var LabelTranslatorStrategyInterface
  364.      */
  365.     protected $labelTranslatorStrategy;
  366.     /**
  367.      * Setting to true will enable preview mode for
  368.      * the entity and show a preview button in the
  369.      * edit/create forms.
  370.      *
  371.      * @var bool
  372.      */
  373.     protected $supportsPreviewMode false;
  374.     /**
  375.      * Roles and permissions per role.
  376.      *
  377.      * @var array 'role' => ['permission', 'permission']
  378.      */
  379.     protected $securityInformation = [];
  380.     protected $cacheIsGranted = [];
  381.     /**
  382.      * Action list for the search result.
  383.      *
  384.      * @var string[]
  385.      */
  386.     protected $searchResultActions = ['edit''show'];
  387.     protected $listModes = [
  388.         'list' => [
  389.             'class' => 'fa fa-list fa-fw',
  390.         ],
  391.         'mosaic' => [
  392.             'class' => self::MOSAIC_ICON_CLASS,
  393.         ],
  394.     ];
  395.     /**
  396.      * The Access mapping.
  397.      *
  398.      * @var array [action1 => requiredRole1, action2 => [requiredRole2, requiredRole3]]
  399.      */
  400.     protected $accessMapping = [];
  401.     /**
  402.      * @var MutableTemplateRegistryInterface
  403.      */
  404.     private $templateRegistry;
  405.     /**
  406.      * The class name managed by the admin class.
  407.      *
  408.      * @var string
  409.      */
  410.     private $class;
  411.     /**
  412.      * The subclasses supported by the admin class.
  413.      *
  414.      * @var array<string, string>
  415.      */
  416.     private $subClasses = [];
  417.     /**
  418.      * The list collection.
  419.      *
  420.      * @var FieldDescriptionCollection
  421.      */
  422.     private $list;
  423.     /**
  424.      * @var FieldDescriptionCollection|null
  425.      */
  426.     private $show;
  427.     /**
  428.      * @var Form|null
  429.      */
  430.     private $form;
  431.     /**
  432.      * The cached base route name.
  433.      *
  434.      * @var string
  435.      */
  436.     private $cachedBaseRouteName;
  437.     /**
  438.      * The cached base route pattern.
  439.      *
  440.      * @var string
  441.      */
  442.     private $cachedBaseRoutePattern;
  443.     /**
  444.      * The form group disposition.
  445.      *
  446.      * NEXT_MAJOR: must have `[]` as default value and remove the possibility to
  447.      * hold boolean values.
  448.      *
  449.      * @var array|bool
  450.      */
  451.     private $formGroups false;
  452.     /**
  453.      * The form tabs disposition.
  454.      *
  455.      * NEXT_MAJOR: must have `[]` as default value and remove the possibility to
  456.      * hold boolean values.
  457.      *
  458.      * @var array|bool
  459.      */
  460.     private $formTabs false;
  461.     /**
  462.      * The view group disposition.
  463.      *
  464.      * NEXT_MAJOR: must have `[]` as default value and remove the possibility to
  465.      * hold boolean values.
  466.      *
  467.      * @var array|bool
  468.      */
  469.     private $showGroups false;
  470.     /**
  471.      * The view tab disposition.
  472.      *
  473.      * NEXT_MAJOR: must have `[]` as default value and remove the possibility to
  474.      * hold boolean values.
  475.      *
  476.      * @var array|bool
  477.      */
  478.     private $showTabs false;
  479.     /**
  480.      * The manager type to use for the admin.
  481.      *
  482.      * @var string
  483.      */
  484.     private $managerType;
  485.     /**
  486.      * The breadcrumbsBuilder component.
  487.      *
  488.      * @var BreadcrumbsBuilderInterface
  489.      */
  490.     private $breadcrumbsBuilder;
  491.     /**
  492.      * Component responsible for persisting filters.
  493.      *
  494.      * @var FilterPersisterInterface|null
  495.      */
  496.     private $filterPersister;
  497.     /**
  498.      * @param string      $code
  499.      * @param string      $class
  500.      * @param string|null $baseControllerName
  501.      */
  502.     public function __construct($code$class$baseControllerName null)
  503.     {
  504.         if (!\is_string($code)) {
  505.             @trigger_error(sprintf(
  506.                 'Passing other type than string as argument 1 for method %s() is deprecated since sonata-project/admin-bundle 3.65. It will accept only string in version 4.0.',
  507.                 __METHOD__
  508.             ), E_USER_DEPRECATED);
  509.         }
  510.         $this->code $code;
  511.         if (!\is_string($class)) {
  512.             @trigger_error(sprintf(
  513.                 'Passing other type than string as argument 2 for method %s() is deprecated since sonata-project/admin-bundle 3.65. It will accept only string in version 4.0.',
  514.                 __METHOD__
  515.             ), E_USER_DEPRECATED);
  516.         }
  517.         $this->class $class;
  518.         if (null !== $baseControllerName && !\is_string($baseControllerName)) {
  519.             @trigger_error(sprintf(
  520.                 'Passing other type than string or null as argument 3 for method %s() is deprecated since sonata-project/admin-bundle 3.65. It will accept only string and null in version 4.0.',
  521.                 __METHOD__
  522.             ), E_USER_DEPRECATED);
  523.         }
  524.         $this->baseControllerName $baseControllerName;
  525.         $this->predefinePerPageOptions();
  526.         $this->datagridValues['_per_page'] = $this->maxPerPage;
  527.     }
  528.     /**
  529.      * {@inheritdoc}
  530.      */
  531.     public function getExportFormats()
  532.     {
  533.         return [
  534.             'json''xml''csv''xls',
  535.         ];
  536.     }
  537.     /**
  538.      * @return array
  539.      */
  540.     public function getExportFields()
  541.     {
  542.         $fields $this->getModelManager()->getExportFields($this->getClass());
  543.         foreach ($this->getExtensions() as $extension) {
  544.             if (method_exists($extension'configureExportFields')) {
  545.                 $fields $extension->configureExportFields($this$fields);
  546.             }
  547.         }
  548.         return $fields;
  549.     }
  550.     public function getDataSourceIterator()
  551.     {
  552.         $datagrid $this->getDatagrid();
  553.         $datagrid->buildPager();
  554.         $fields = [];
  555.         foreach ($this->getExportFields() as $key => $field) {
  556.             $label $this->getTranslationLabel($field'export''label');
  557.             $transLabel $this->trans($label);
  558.             // NEXT_MAJOR: Remove this hack, because all field labels will be translated with the major release
  559.             // No translation key exists
  560.             if ($transLabel === $label) {
  561.                 $fields[$key] = $field;
  562.             } else {
  563.                 $fields[$transLabel] = $field;
  564.             }
  565.         }
  566.         return $this->getModelManager()->getDataSourceIterator($datagrid$fields);
  567.     }
  568.     public function validate(ErrorElement $errorElement$object)
  569.     {
  570.     }
  571.     /**
  572.      * define custom variable.
  573.      */
  574.     public function initialize()
  575.     {
  576.         if (!$this->classnameLabel) {
  577.             /* NEXT_MAJOR: remove cast to string, null is not supposed to be
  578.             supported but was documented as such */
  579.             $this->classnameLabel substr(
  580.                 (string) $this->getClass(),
  581.                 strrpos((string) $this->getClass(), '\\') + 1
  582.             );
  583.         }
  584.         // NEXT_MAJOR: Remove this line.
  585.         $this->baseCodeRoute $this->getCode();
  586.         $this->configure();
  587.     }
  588.     public function configure()
  589.     {
  590.     }
  591.     public function update($object)
  592.     {
  593.         $this->preUpdate($object);
  594.         foreach ($this->extensions as $extension) {
  595.             $extension->preUpdate($this$object);
  596.         }
  597.         $result $this->getModelManager()->update($object);
  598.         // BC compatibility
  599.         if (null !== $result) {
  600.             $object $result;
  601.         }
  602.         $this->postUpdate($object);
  603.         foreach ($this->extensions as $extension) {
  604.             $extension->postUpdate($this$object);
  605.         }
  606.         return $object;
  607.     }
  608.     public function create($object)
  609.     {
  610.         $this->prePersist($object);
  611.         foreach ($this->extensions as $extension) {
  612.             $extension->prePersist($this$object);
  613.         }
  614.         $result $this->getModelManager()->create($object);
  615.         // BC compatibility
  616.         if (null !== $result) {
  617.             $object $result;
  618.         }
  619.         $this->postPersist($object);
  620.         foreach ($this->extensions as $extension) {
  621.             $extension->postPersist($this$object);
  622.         }
  623.         $this->createObjectSecurity($object);
  624.         return $object;
  625.     }
  626.     public function delete($object)
  627.     {
  628.         $this->preRemove($object);
  629.         foreach ($this->extensions as $extension) {
  630.             $extension->preRemove($this$object);
  631.         }
  632.         $this->getSecurityHandler()->deleteObjectSecurity($this$object);
  633.         $this->getModelManager()->delete($object);
  634.         $this->postRemove($object);
  635.         foreach ($this->extensions as $extension) {
  636.             $extension->postRemove($this$object);
  637.         }
  638.     }
  639.     /**
  640.      * @param object $object
  641.      */
  642.     public function preValidate($object)
  643.     {
  644.     }
  645.     public function preUpdate($object)
  646.     {
  647.     }
  648.     public function postUpdate($object)
  649.     {
  650.     }
  651.     public function prePersist($object)
  652.     {
  653.     }
  654.     public function postPersist($object)
  655.     {
  656.     }
  657.     public function preRemove($object)
  658.     {
  659.     }
  660.     public function postRemove($object)
  661.     {
  662.     }
  663.     public function preBatchAction($actionNameProxyQueryInterface $query, array &$idx$allElements)
  664.     {
  665.     }
  666.     public function getFilterParameters()
  667.     {
  668.         $parameters = [];
  669.         // build the values array
  670.         if ($this->hasRequest()) {
  671.             $filters $this->request->query->get('filter', []);
  672.             if (isset($filters['_page'])) {
  673.                 $filters['_page'] = (int) $filters['_page'];
  674.             }
  675.             if (isset($filters['_per_page'])) {
  676.                 $filters['_per_page'] = (int) $filters['_per_page'];
  677.             }
  678.             // if filter persistence is configured
  679.             // NEXT_MAJOR: remove `$this->persistFilters !== false` from the condition
  680.             if (false !== $this->persistFilters && null !== $this->filterPersister) {
  681.                 // if reset filters is asked, remove from storage
  682.                 if ('reset' === $this->request->query->get('filters')) {
  683.                     $this->filterPersister->reset($this->getCode());
  684.                 }
  685.                 // if no filters, fetch from storage
  686.                 // otherwise save to storage
  687.                 if (empty($filters)) {
  688.                     $filters $this->filterPersister->get($this->getCode());
  689.                 } else {
  690.                     $this->filterPersister->set($this->getCode(), $filters);
  691.                 }
  692.             }
  693.             $parameters array_merge(
  694.                 $this->getModelManager()->getDefaultSortValues($this->getClass()),
  695.                 $this->datagridValues,
  696.                 $this->getDefaultFilterValues(),
  697.                 $filters
  698.             );
  699.             if (!$this->determinedPerPageValue($parameters['_per_page'])) {
  700.                 $parameters['_per_page'] = $this->maxPerPage;
  701.             }
  702.             // always force the parent value
  703.             if ($this->isChild() && $this->getParentAssociationMapping()) {
  704.                 $name str_replace('.''__'$this->getParentAssociationMapping());
  705.                 $parameters[$name] = ['value' => $this->request->get($this->getParent()->getIdParameter())];
  706.             }
  707.         }
  708.         return $parameters;
  709.     }
  710.     public function buildDatagrid()
  711.     {
  712.         if ($this->datagrid) {
  713.             return;
  714.         }
  715.         $filterParameters $this->getFilterParameters();
  716.         // transform _sort_by from a string to a FieldDescriptionInterface for the datagrid.
  717.         if (isset($filterParameters['_sort_by']) && \is_string($filterParameters['_sort_by'])) {
  718.             if ($this->hasListFieldDescription($filterParameters['_sort_by'])) {
  719.                 $filterParameters['_sort_by'] = $this->getListFieldDescription($filterParameters['_sort_by']);
  720.             } else {
  721.                 $filterParameters['_sort_by'] = $this->getModelManager()->getNewFieldDescriptionInstance(
  722.                     $this->getClass(),
  723.                     $filterParameters['_sort_by'],
  724.                     []
  725.                 );
  726.                 $this->getListBuilder()->buildField(null$filterParameters['_sort_by'], $this);
  727.             }
  728.         }
  729.         // initialize the datagrid
  730.         $this->datagrid $this->getDatagridBuilder()->getBaseDatagrid($this$filterParameters);
  731.         $this->datagrid->getPager()->setMaxPageLinks($this->maxPageLinks);
  732.         $mapper = new DatagridMapper($this->getDatagridBuilder(), $this->datagrid$this);
  733.         // build the datagrid filter
  734.         $this->configureDatagridFilters($mapper);
  735.         // ok, try to limit to add parent filter
  736.         if ($this->isChild() && $this->getParentAssociationMapping() && !$mapper->has($this->getParentAssociationMapping())) {
  737.             $mapper->add($this->getParentAssociationMapping(), null, [
  738.                 'show_filter' => false,
  739.                 'label' => false,
  740.                 'field_type' => ModelHiddenType::class,
  741.                 'field_options' => [
  742.                     'model_manager' => $this->getModelManager(),
  743.                 ],
  744.                 'operator_type' => HiddenType::class,
  745.             ], nullnull, [
  746.                 'admin_code' => $this->getParent()->getCode(),
  747.             ]);
  748.         }
  749.         foreach ($this->getExtensions() as $extension) {
  750.             $extension->configureDatagridFilters($mapper);
  751.         }
  752.     }
  753.     /**
  754.      * Returns the name of the parent related field, so the field can be use to set the default
  755.      * value (ie the parent object) or to filter the object.
  756.      *
  757.      * @throws \InvalidArgumentException
  758.      *
  759.      * @return string|null
  760.      */
  761.     public function getParentAssociationMapping()
  762.     {
  763.         // NEXT_MAJOR: remove array check
  764.         if (\is_array($this->parentAssociationMapping) && $this->isChild()) {
  765.             $parent $this->getParent()->getCode();
  766.             if (\array_key_exists($parent$this->parentAssociationMapping)) {
  767.                 return $this->parentAssociationMapping[$parent];
  768.             }
  769.             throw new \InvalidArgumentException(sprintf(
  770.                 "There's no association between %s and %s.",
  771.                 $this->getCode(),
  772.                 $this->getParent()->getCode()
  773.             ));
  774.         }
  775.         // NEXT_MAJOR: remove this line
  776.         return $this->parentAssociationMapping;
  777.     }
  778.     /**
  779.      * @param string $code
  780.      * @param string $value
  781.      */
  782.     final public function addParentAssociationMapping($code$value)
  783.     {
  784.         $this->parentAssociationMapping[$code] = $value;
  785.     }
  786.     /**
  787.      * Returns the baseRoutePattern used to generate the routing information.
  788.      *
  789.      * @throws \RuntimeException
  790.      *
  791.      * @return string the baseRoutePattern used to generate the routing information
  792.      */
  793.     public function getBaseRoutePattern()
  794.     {
  795.         if (null !== $this->cachedBaseRoutePattern) {
  796.             return $this->cachedBaseRoutePattern;
  797.         }
  798.         if ($this->isChild()) { // the admin class is a child, prefix it with the parent route pattern
  799.             $baseRoutePattern $this->baseRoutePattern;
  800.             if (!$this->baseRoutePattern) {
  801.                 preg_match(self::CLASS_REGEX$this->class$matches);
  802.                 if (!$matches) {
  803.                     throw new \RuntimeException(sprintf('Please define a default `baseRoutePattern` value for the admin class `%s`', static::class));
  804.                 }
  805.                 $baseRoutePattern $this->urlize($matches[5], '-');
  806.             }
  807.             $this->cachedBaseRoutePattern sprintf(
  808.                 '%s/%s/%s',
  809.                 $this->getParent()->getBaseRoutePattern(),
  810.                 $this->getParent()->getRouterIdParameter(),
  811.                 $baseRoutePattern
  812.             );
  813.         } elseif ($this->baseRoutePattern) {
  814.             $this->cachedBaseRoutePattern $this->baseRoutePattern;
  815.         } else {
  816.             preg_match(self::CLASS_REGEX$this->class$matches);
  817.             if (!$matches) {
  818.                 throw new \RuntimeException(sprintf('Please define a default `baseRoutePattern` value for the admin class `%s`', static::class));
  819.             }
  820.             $this->cachedBaseRoutePattern sprintf(
  821.                 '/%s%s/%s',
  822.                 empty($matches[1]) ? '' $this->urlize($matches[1], '-').'/',
  823.                 $this->urlize($matches[3], '-'),
  824.                 $this->urlize($matches[5], '-')
  825.             );
  826.         }
  827.         return $this->cachedBaseRoutePattern;
  828.     }
  829.     /**
  830.      * Returns the baseRouteName used to generate the routing information.
  831.      *
  832.      * @throws \RuntimeException
  833.      *
  834.      * @return string the baseRouteName used to generate the routing information
  835.      */
  836.     public function getBaseRouteName()
  837.     {
  838.         if (null !== $this->cachedBaseRouteName) {
  839.             return $this->cachedBaseRouteName;
  840.         }
  841.         if ($this->isChild()) { // the admin class is a child, prefix it with the parent route name
  842.             $baseRouteName $this->baseRouteName;
  843.             if (!$this->baseRouteName) {
  844.                 preg_match(self::CLASS_REGEX$this->class$matches);
  845.                 if (!$matches) {
  846.                     throw new \RuntimeException(sprintf('Cannot automatically determine base route name, please define a default `baseRouteName` value for the admin class `%s`', static::class));
  847.                 }
  848.                 $baseRouteName $this->urlize($matches[5]);
  849.             }
  850.             $this->cachedBaseRouteName sprintf(
  851.                 '%s_%s',
  852.                 $this->getParent()->getBaseRouteName(),
  853.                 $baseRouteName
  854.             );
  855.         } elseif ($this->baseRouteName) {
  856.             $this->cachedBaseRouteName $this->baseRouteName;
  857.         } else {
  858.             preg_match(self::CLASS_REGEX$this->class$matches);
  859.             if (!$matches) {
  860.                 throw new \RuntimeException(sprintf('Cannot automatically determine base route name, please define a default `baseRouteName` value for the admin class `%s`', static::class));
  861.             }
  862.             $this->cachedBaseRouteName sprintf(
  863.                 'admin_%s%s_%s',
  864.                 empty($matches[1]) ? '' $this->urlize($matches[1]).'_',
  865.                 $this->urlize($matches[3]),
  866.                 $this->urlize($matches[5])
  867.             );
  868.         }
  869.         return $this->cachedBaseRouteName;
  870.     }
  871.     /**
  872.      * urlize the given word.
  873.      *
  874.      * @param string $word
  875.      * @param string $sep  the separator
  876.      *
  877.      * @return string
  878.      */
  879.     public function urlize($word$sep '_')
  880.     {
  881.         return strtolower(preg_replace('/[^a-z0-9_]/i'$sep.'$1'$word));
  882.     }
  883.     public function getClass()
  884.     {
  885.         if ($this->hasActiveSubClass()) {
  886.             if ($this->hasParentFieldDescription()) {
  887.                 throw new \RuntimeException('Feature not implemented: an embedded admin cannot have subclass');
  888.             }
  889.             $subClass $this->getRequest()->query->get('subclass');
  890.             if (!$this->hasSubClass($subClass)) {
  891.                 throw new \RuntimeException(sprintf('Subclass "%s" is not defined.'$subClass));
  892.             }
  893.             return $this->getSubClass($subClass);
  894.         }
  895.         // see https://github.com/sonata-project/SonataCoreBundle/commit/247eeb0a7ca7211142e101754769d70bc402a5b4
  896.         if ($this->subject && \is_object($this->subject)) {
  897.             return ClassUtils::getClass($this->subject);
  898.         }
  899.         return $this->class;
  900.     }
  901.     public function getSubClasses()
  902.     {
  903.         return $this->subClasses;
  904.     }
  905.     /**
  906.      * NEXT_MAJOR: remove this method.
  907.      */
  908.     public function addSubClass($subClass)
  909.     {
  910.         @trigger_error(sprintf(
  911.             'Method "%s" is deprecated since sonata-project/admin-bundle 3.30 and will be removed in 4.0.',
  912.             __METHOD__
  913.         ), E_USER_DEPRECATED);
  914.         if (!\in_array($subClass$this->subClassestrue)) {
  915.             $this->subClasses[] = $subClass;
  916.         }
  917.     }
  918.     public function setSubClasses(array $subClasses)
  919.     {
  920.         $this->subClasses $subClasses;
  921.     }
  922.     public function hasSubClass($name)
  923.     {
  924.         return isset($this->subClasses[$name]);
  925.     }
  926.     public function hasActiveSubClass()
  927.     {
  928.         if (\count($this->subClasses) > && $this->request) {
  929.             return null !== $this->getRequest()->query->get('subclass');
  930.         }
  931.         return false;
  932.     }
  933.     public function getActiveSubClass()
  934.     {
  935.         if (!$this->hasActiveSubClass()) {
  936.             @trigger_error(sprintf(
  937.                 'Calling %s() when there is no active subclass is deprecated since sonata-project/admin-bundle 3.52 and will throw an exception in 4.0. '.
  938.                 'Use %s::hasActiveSubClass() to know if there is an active subclass.',
  939.                 __METHOD__,
  940.                 __CLASS__
  941.             ), E_USER_DEPRECATED);
  942.             // NEXT_MAJOR : remove the previous `trigger_error()` call, the `return null` statement, uncomment the following exception and declare string as return type
  943.             // throw new \LogicException(sprintf(
  944.             //    'Admin "%s" has no active subclass.',
  945.             //    static::class
  946.             // ));
  947.             return null;
  948.         }
  949.         return $this->getSubClass($this->getActiveSubclassCode());
  950.     }
  951.     public function getActiveSubclassCode()
  952.     {
  953.         if (!$this->hasActiveSubClass()) {
  954.             @trigger_error(sprintf(
  955.                 'Calling %s() when there is no active subclass is deprecated since sonata-project/admin-bundle 3.52 and will throw an exception in 4.0. '.
  956.                 'Use %s::hasActiveSubClass() to know if there is an active subclass.',
  957.                 __METHOD__,
  958.                 __CLASS__
  959.             ), E_USER_DEPRECATED);
  960.             // NEXT_MAJOR : remove the previous `trigger_error()` call, the `return null` statement, uncomment the following exception and declare string as return type
  961.             // throw new \LogicException(sprintf(
  962.             //    'Admin "%s" has no active subclass.',
  963.             //    static::class
  964.             // ));
  965.             return null;
  966.         }
  967.         $subClass $this->getRequest()->query->get('subclass');
  968.         if (!$this->hasSubClass($subClass)) {
  969.             @trigger_error(sprintf(
  970.                 'Calling %s() when there is no active subclass is deprecated since sonata-project/admin-bundle 3.52 and will throw an exception in 4.0. '.
  971.                 'Use %s::hasActiveSubClass() to know if there is an active subclass.',
  972.                 __METHOD__,
  973.                 __CLASS__
  974.             ), E_USER_DEPRECATED);
  975.             // NEXT_MAJOR : remove the previous `trigger_error()` call, the `return null` statement, uncomment the following exception and declare string as return type
  976.             // throw new \LogicException(sprintf(
  977.             //    'Admin "%s" has no active subclass.',
  978.             //    static::class
  979.             // ));
  980.             return null;
  981.         }
  982.         return $subClass;
  983.     }
  984.     public function getBatchActions()
  985.     {
  986.         $actions = [];
  987.         if ($this->hasRoute('delete') && $this->hasAccess('delete')) {
  988.             $actions['delete'] = [
  989.                 'label' => 'action_delete',
  990.                 'translation_domain' => 'SonataAdminBundle',
  991.                 'ask_confirmation' => true// by default always true
  992.             ];
  993.         }
  994.         $actions $this->configureBatchActions($actions);
  995.         foreach ($this->getExtensions() as $extension) {
  996.             // NEXT_MAJOR: remove method check
  997.             if (method_exists($extension'configureBatchActions')) {
  998.                 $actions $extension->configureBatchActions($this$actions);
  999.             }
  1000.         }
  1001.         foreach ($actions  as $name => &$action) {
  1002.             if (!\array_key_exists('label'$action)) {
  1003.                 $action['label'] = $this->getTranslationLabel($name'batch''label');
  1004.             }
  1005.             if (!\array_key_exists('translation_domain'$action)) {
  1006.                 $action['translation_domain'] = $this->getTranslationDomain();
  1007.             }
  1008.         }
  1009.         return $actions;
  1010.     }
  1011.     public function getRoutes()
  1012.     {
  1013.         $this->buildRoutes();
  1014.         return $this->routes;
  1015.     }
  1016.     public function getRouterIdParameter()
  1017.     {
  1018.         return '{'.$this->getIdParameter().'}';
  1019.     }
  1020.     public function getIdParameter()
  1021.     {
  1022.         $parameter 'id';
  1023.         for ($i 0$i $this->getChildDepth(); ++$i) {
  1024.             $parameter 'child'.ucfirst($parameter);
  1025.         }
  1026.         return $parameter;
  1027.     }
  1028.     public function hasRoute($name)
  1029.     {
  1030.         if (!$this->routeGenerator) {
  1031.             throw new \RuntimeException('RouteGenerator cannot be null');
  1032.         }
  1033.         return $this->routeGenerator->hasAdminRoute($this$name);
  1034.     }
  1035.     /**
  1036.      * @param string      $name
  1037.      * @param string|null $adminCode
  1038.      *
  1039.      * @return bool
  1040.      */
  1041.     public function isCurrentRoute($name$adminCode null)
  1042.     {
  1043.         if (!$this->hasRequest()) {
  1044.             return false;
  1045.         }
  1046.         $request $this->getRequest();
  1047.         $route $request->get('_route');
  1048.         if ($adminCode) {
  1049.             $admin $this->getConfigurationPool()->getAdminByAdminCode($adminCode);
  1050.         } else {
  1051.             $admin $this;
  1052.         }
  1053.         if (!$admin) {
  1054.             return false;
  1055.         }
  1056.         return ($admin->getBaseRouteName().'_'.$name) === $route;
  1057.     }
  1058.     public function generateObjectUrl($name$object, array $parameters = [], $referenceType RoutingUrlGeneratorInterface::ABSOLUTE_PATH)
  1059.     {
  1060.         $parameters['id'] = $this->getUrlSafeIdentifier($object);
  1061.         return $this->generateUrl($name$parameters$referenceType);
  1062.     }
  1063.     public function generateUrl($name, array $parameters = [], $referenceType RoutingUrlGeneratorInterface::ABSOLUTE_PATH)
  1064.     {
  1065.         return $this->routeGenerator->generateUrl($this$name$parameters$referenceType);
  1066.     }
  1067.     public function generateMenuUrl($name, array $parameters = [], $referenceType RoutingUrlGeneratorInterface::ABSOLUTE_PATH)
  1068.     {
  1069.         return $this->routeGenerator->generateMenuUrl($this$name$parameters$referenceType);
  1070.     }
  1071.     final public function setTemplateRegistry(MutableTemplateRegistryInterface $templateRegistry)
  1072.     {
  1073.         $this->templateRegistry $templateRegistry;
  1074.     }
  1075.     /**
  1076.      * @param array<string, string> $templates
  1077.      */
  1078.     public function setTemplates(array $templates)
  1079.     {
  1080.         // NEXT_MAJOR: Remove this line
  1081.         $this->templates $templates;
  1082.         $this->getTemplateRegistry()->setTemplates($templates);
  1083.     }
  1084.     /**
  1085.      * @param string $name
  1086.      * @param string $template
  1087.      */
  1088.     public function setTemplate($name$template)
  1089.     {
  1090.         // NEXT_MAJOR: Remove this line
  1091.         $this->templates[$name] = $template;
  1092.         $this->getTemplateRegistry()->setTemplate($name$template);
  1093.     }
  1094.     /**
  1095.      * @deprecated since sonata-project/admin-bundle 3.34, will be dropped in 4.0. Use TemplateRegistry services instead
  1096.      *
  1097.      * @return array<string, string>
  1098.      */
  1099.     public function getTemplates()
  1100.     {
  1101.         return $this->getTemplateRegistry()->getTemplates();
  1102.     }
  1103.     /**
  1104.      * @deprecated since sonata-project/admin-bundle 3.34, will be dropped in 4.0. Use TemplateRegistry services instead
  1105.      *
  1106.      * @param string $name
  1107.      *
  1108.      * @return string|null
  1109.      */
  1110.     public function getTemplate($name)
  1111.     {
  1112.         return $this->getTemplateRegistry()->getTemplate($name);
  1113.     }
  1114.     public function getNewInstance()
  1115.     {
  1116.         $object $this->getModelManager()->getModelInstance($this->getClass());
  1117.         foreach ($this->getExtensions() as $extension) {
  1118.             $extension->alterNewInstance($this$object);
  1119.         }
  1120.         return $object;
  1121.     }
  1122.     public function getFormBuilder()
  1123.     {
  1124.         $this->formOptions['data_class'] = $this->getClass();
  1125.         $formBuilder $this->getFormContractor()->getFormBuilder(
  1126.             $this->getUniqid(),
  1127.             $this->formOptions
  1128.         );
  1129.         $this->defineFormBuilder($formBuilder);
  1130.         return $formBuilder;
  1131.     }
  1132.     /**
  1133.      * This method is being called by the main admin class and the child class,
  1134.      * the getFormBuilder is only call by the main admin class.
  1135.      */
  1136.     public function defineFormBuilder(FormBuilderInterface $formBuilder)
  1137.     {
  1138.         if (!$this->hasSubject()) {
  1139.             @trigger_error(sprintf(
  1140.                 'Calling %s() when there is no subject is deprecated since sonata-project/admin-bundle 3.65 and will throw an exception in 4.0. '.
  1141.                 'Use %s::setSubject() to set the subject.',
  1142.                 __METHOD__,
  1143.                 __CLASS__
  1144.             ), E_USER_DEPRECATED);
  1145.             // NEXT_MAJOR : remove the previous `trigger_error()` call and uncomment the following exception
  1146.             // throw new \LogicException(sprintf(
  1147.             //    'Admin "%s" has no subject.',
  1148.             //    static::class
  1149.             // ));
  1150.         }
  1151.         $mapper = new FormMapper($this->getFormContractor(), $formBuilder$this);
  1152.         $this->configureFormFields($mapper);
  1153.         foreach ($this->getExtensions() as $extension) {
  1154.             $extension->configureFormFields($mapper);
  1155.         }
  1156.         $this->attachInlineValidator();
  1157.     }
  1158.     public function attachAdminClass(FieldDescriptionInterface $fieldDescription)
  1159.     {
  1160.         $pool $this->getConfigurationPool();
  1161.         $adminCode $fieldDescription->getOption('admin_code');
  1162.         if (null !== $adminCode) {
  1163.             $admin $pool->getAdminByAdminCode($adminCode);
  1164.         } else {
  1165.             $admin $pool->getAdminByClass($fieldDescription->getTargetEntity());
  1166.         }
  1167.         if (!$admin) {
  1168.             return;
  1169.         }
  1170.         if ($this->hasRequest()) {
  1171.             $admin->setRequest($this->getRequest());
  1172.         }
  1173.         $fieldDescription->setAssociationAdmin($admin);
  1174.     }
  1175.     public function getObject($id)
  1176.     {
  1177.         $object $this->getModelManager()->find($this->getClass(), $id);
  1178.         foreach ($this->getExtensions() as $extension) {
  1179.             $extension->alterObject($this$object);
  1180.         }
  1181.         return $object;
  1182.     }
  1183.     public function getForm()
  1184.     {
  1185.         $this->buildForm();
  1186.         return $this->form;
  1187.     }
  1188.     public function getList()
  1189.     {
  1190.         $this->buildList();
  1191.         return $this->list;
  1192.     }
  1193.     /**
  1194.      * @final since sonata-project/admin-bundle 3.63.0
  1195.      */
  1196.     public function createQuery($context 'list')
  1197.     {
  1198.         if (\func_num_args() > 0) {
  1199.             @trigger_error(
  1200.                 'The $context argument of '.__METHOD__.' is deprecated since 3.3, to be removed in 4.0.',
  1201.                 E_USER_DEPRECATED
  1202.             );
  1203.         }
  1204.         $query $this->getModelManager()->createQuery($this->getClass());
  1205.         $query $this->configureQuery($query);
  1206.         foreach ($this->extensions as $extension) {
  1207.             $extension->configureQuery($this$query$context);
  1208.         }
  1209.         return $query;
  1210.     }
  1211.     public function getDatagrid()
  1212.     {
  1213.         $this->buildDatagrid();
  1214.         return $this->datagrid;
  1215.     }
  1216.     public function buildTabMenu($action, ?AdminInterface $childAdmin null)
  1217.     {
  1218.         if ($this->loaded['tab_menu']) {
  1219.             return $this->menu;
  1220.         }
  1221.         $this->loaded['tab_menu'] = true;
  1222.         $menu $this->menuFactory->createItem('root');
  1223.         $menu->setChildrenAttribute('class''nav navbar-nav');
  1224.         $menu->setExtra('translation_domain'$this->translationDomain);
  1225.         // Prevents BC break with KnpMenuBundle v1.x
  1226.         if (method_exists($menu'setCurrentUri')) {
  1227.             $menu->setCurrentUri($this->getRequest()->getBaseUrl().$this->getRequest()->getPathInfo());
  1228.         }
  1229.         $this->configureTabMenu($menu$action$childAdmin);
  1230.         foreach ($this->getExtensions() as $extension) {
  1231.             $extension->configureTabMenu($this$menu$action$childAdmin);
  1232.         }
  1233.         $this->menu $menu;
  1234.         return $this->menu;
  1235.     }
  1236.     public function buildSideMenu($action, ?AdminInterface $childAdmin null)
  1237.     {
  1238.         return $this->buildTabMenu($action$childAdmin);
  1239.     }
  1240.     /**
  1241.      * @param string $action
  1242.      *
  1243.      * @return ItemInterface
  1244.      */
  1245.     public function getSideMenu($action, ?AdminInterface $childAdmin null)
  1246.     {
  1247.         if ($this->isChild()) {
  1248.             return $this->getParent()->getSideMenu($action$this);
  1249.         }
  1250.         $this->buildSideMenu($action$childAdmin);
  1251.         return $this->menu;
  1252.     }
  1253.     /**
  1254.      * Returns the root code.
  1255.      *
  1256.      * @return string the root code
  1257.      */
  1258.     public function getRootCode()
  1259.     {
  1260.         return $this->getRoot()->getCode();
  1261.     }
  1262.     /**
  1263.      * Returns the master admin.
  1264.      *
  1265.      * @return AbstractAdmin the root admin class
  1266.      */
  1267.     public function getRoot()
  1268.     {
  1269.         if (!$this->hasParentFieldDescription()) {
  1270.             return $this;
  1271.         }
  1272.         return $this->getParentFieldDescription()->getAdmin()->getRoot();
  1273.     }
  1274.     public function setBaseControllerName($baseControllerName)
  1275.     {
  1276.         $this->baseControllerName $baseControllerName;
  1277.     }
  1278.     public function getBaseControllerName()
  1279.     {
  1280.         return $this->baseControllerName;
  1281.     }
  1282.     /**
  1283.      * @param string $label
  1284.      */
  1285.     public function setLabel($label)
  1286.     {
  1287.         $this->label $label;
  1288.     }
  1289.     public function getLabel()
  1290.     {
  1291.         return $this->label;
  1292.     }
  1293.     /**
  1294.      * @param bool $persist
  1295.      *
  1296.      * NEXT_MAJOR: remove this method
  1297.      *
  1298.      * @deprecated since sonata-project/admin-bundle 3.34, to be removed in 4.0.
  1299.      */
  1300.     public function setPersistFilters($persist)
  1301.     {
  1302.         @trigger_error(
  1303.             'The '.__METHOD__.' method is deprecated since version 3.34 and will be removed in 4.0.',
  1304.             E_USER_DEPRECATED
  1305.         );
  1306.         $this->persistFilters $persist;
  1307.     }
  1308.     public function setFilterPersister(?FilterPersisterInterface $filterPersister null)
  1309.     {
  1310.         $this->filterPersister $filterPersister;
  1311.         // NEXT_MAJOR remove the deprecated property will be removed. Needed for persisted filter condition.
  1312.         $this->persistFilters true;
  1313.     }
  1314.     /**
  1315.      * @param int $maxPerPage
  1316.      */
  1317.     public function setMaxPerPage($maxPerPage)
  1318.     {
  1319.         $this->maxPerPage $maxPerPage;
  1320.     }
  1321.     /**
  1322.      * @return int
  1323.      */
  1324.     public function getMaxPerPage()
  1325.     {
  1326.         return $this->maxPerPage;
  1327.     }
  1328.     /**
  1329.      * @param int $maxPageLinks
  1330.      */
  1331.     public function setMaxPageLinks($maxPageLinks)
  1332.     {
  1333.         $this->maxPageLinks $maxPageLinks;
  1334.     }
  1335.     /**
  1336.      * @return int
  1337.      */
  1338.     public function getMaxPageLinks()
  1339.     {
  1340.         return $this->maxPageLinks;
  1341.     }
  1342.     public function getFormGroups()
  1343.     {
  1344.         if (!\is_array($this->formGroups) && 'sonata_deprecation_mute' !== (\func_get_args()[0] ?? null)) {
  1345.             @trigger_error(sprintf(
  1346.                 'Returning other type than array in method %s() is deprecated since sonata-project/admin-bundle 3.65. It will return only array in version 4.0.',
  1347.                 __METHOD__
  1348.             ), E_USER_DEPRECATED);
  1349.         }
  1350.         return $this->formGroups;
  1351.     }
  1352.     public function setFormGroups(array $formGroups)
  1353.     {
  1354.         $this->formGroups $formGroups;
  1355.     }
  1356.     public function removeFieldFromFormGroup($key)
  1357.     {
  1358.         foreach ($this->formGroups as $name => $formGroup) {
  1359.             unset($this->formGroups[$name]['fields'][$key]);
  1360.             if (empty($this->formGroups[$name]['fields'])) {
  1361.                 unset($this->formGroups[$name]);
  1362.             }
  1363.         }
  1364.     }
  1365.     /**
  1366.      * @param string $group
  1367.      */
  1368.     public function reorderFormGroup($group, array $keys)
  1369.     {
  1370.         // NEXT_MAJOR: Remove the argument "sonata_deprecation_mute" in the following call.
  1371.         $formGroups $this->getFormGroups('sonata_deprecation_mute');
  1372.         $formGroups[$group]['fields'] = array_merge(array_flip($keys), $formGroups[$group]['fields']);
  1373.         $this->setFormGroups($formGroups);
  1374.     }
  1375.     public function getFormTabs()
  1376.     {
  1377.         if (!\is_array($this->formTabs) && 'sonata_deprecation_mute' !== (\func_get_args()[0] ?? null)) {
  1378.             @trigger_error(sprintf(
  1379.                 'Returning other type than array in method %s() is deprecated since sonata-project/admin-bundle 3.65. It will return only array in version 4.0.',
  1380.                 __METHOD__
  1381.             ), E_USER_DEPRECATED);
  1382.         }
  1383.         return $this->formTabs;
  1384.     }
  1385.     public function setFormTabs(array $formTabs)
  1386.     {
  1387.         $this->formTabs $formTabs;
  1388.     }
  1389.     public function getShowTabs()
  1390.     {
  1391.         if (!\is_array($this->showTabs) && 'sonata_deprecation_mute' !== (\func_get_args()[0] ?? null)) {
  1392.             @trigger_error(sprintf(
  1393.                 'Returning other type than array in method %s() is deprecated since sonata-project/admin-bundle 3.65. It will return only array in version 4.0.',
  1394.                 __METHOD__
  1395.             ), E_USER_DEPRECATED);
  1396.         }
  1397.         return $this->showTabs;
  1398.     }
  1399.     public function setShowTabs(array $showTabs)
  1400.     {
  1401.         $this->showTabs $showTabs;
  1402.     }
  1403.     public function getShowGroups()
  1404.     {
  1405.         if (!\is_array($this->showGroups) && 'sonata_deprecation_mute' !== (\func_get_args()[0] ?? null)) {
  1406.             @trigger_error(sprintf(
  1407.                 'Returning other type than array in method %s() is deprecated since sonata-project/admin-bundle 3.65. It will return only array in version 4.0.',
  1408.                 __METHOD__
  1409.             ), E_USER_DEPRECATED);
  1410.         }
  1411.         return $this->showGroups;
  1412.     }
  1413.     public function setShowGroups(array $showGroups)
  1414.     {
  1415.         $this->showGroups $showGroups;
  1416.     }
  1417.     public function reorderShowGroup($group, array $keys)
  1418.     {
  1419.         // NEXT_MAJOR: Remove the argument "sonata_deprecation_mute" in the following call.
  1420.         $showGroups $this->getShowGroups('sonata_deprecation_mute');
  1421.         $showGroups[$group]['fields'] = array_merge(array_flip($keys), $showGroups[$group]['fields']);
  1422.         $this->setShowGroups($showGroups);
  1423.     }
  1424.     public function setParentFieldDescription(FieldDescriptionInterface $parentFieldDescription)
  1425.     {
  1426.         $this->parentFieldDescription $parentFieldDescription;
  1427.     }
  1428.     public function getParentFieldDescription()
  1429.     {
  1430.         if (!$this->hasParentFieldDescription()) {
  1431.             @trigger_error(sprintf(
  1432.                 'Calling %s() when there is no parent field description is deprecated since sonata-project/admin-bundle 3.66 and will throw an exception in 4.0. '.
  1433.                 'Use %s::hasParentFieldDescription() to know if there is a parent field description.',
  1434.                 __METHOD__,
  1435.                 __CLASS__
  1436.             ), E_USER_DEPRECATED);
  1437.             // NEXT_MAJOR : remove the previous `trigger_error()` call, the `return null` statement, uncomment the following exception and declare FieldDescriptionInterface as return type
  1438.             // throw new \LogicException(sprintf(
  1439.             //    'Admin "%s" has no parent field description.',
  1440.             //    static::class
  1441.             // ));
  1442.             return null;
  1443.         }
  1444.         return $this->parentFieldDescription;
  1445.     }
  1446.     public function hasParentFieldDescription()
  1447.     {
  1448.         return $this->parentFieldDescription instanceof FieldDescriptionInterface;
  1449.     }
  1450.     public function setSubject($subject)
  1451.     {
  1452.         if (\is_object($subject) && !is_a($subject$this->getClass(), true)) {
  1453.             $message = <<<'EOT'
  1454. You are trying to set entity an instance of "%s",
  1455. which is not the one registered with this admin class ("%s").
  1456. This is deprecated since 3.5 and will no longer be supported in 4.0.
  1457. EOT;
  1458.             @trigger_error(
  1459.                 sprintf($message, \get_class($subject), $this->getClass()),
  1460.                 E_USER_DEPRECATED
  1461.             ); // NEXT_MAJOR : throw an exception instead
  1462.         }
  1463.         $this->subject $subject;
  1464.     }
  1465.     public function getSubject()
  1466.     {
  1467.         if (!$this->hasSubject()) {
  1468.             @trigger_error(sprintf(
  1469.                 'Calling %s() when there is no subject is deprecated since sonata-project/admin-bundle 3.66 and will throw an exception in 4.0. '.
  1470.                 'Use %s::hasSubject() to know if there is a subject.',
  1471.                 __METHOD__,
  1472.                 __CLASS__
  1473.             ), E_USER_DEPRECATED);
  1474.             // NEXT_MAJOR : remove the previous `trigger_error()` call, the `return null` statement, uncomment the following exception and update the return type
  1475.             // throw new \LogicException(sprintf(
  1476.             //    'Admin "%s" has no subject.',
  1477.             //    static::class
  1478.             // ));
  1479.             return null;
  1480.         }
  1481.         return $this->subject;
  1482.     }
  1483.     public function hasSubject()
  1484.     {
  1485.         if (null === $this->subject && $this->hasRequest() && !$this->hasParentFieldDescription()) {
  1486.             $id $this->request->get($this->getIdParameter());
  1487.             if (null !== $id) {
  1488.                 $this->subject $this->getObject($id);
  1489.             }
  1490.         }
  1491.         return null !== $this->subject;
  1492.     }
  1493.     public function getFormFieldDescriptions()
  1494.     {
  1495.         $this->buildForm();
  1496.         return $this->formFieldDescriptions;
  1497.     }
  1498.     public function getFormFieldDescription($name)
  1499.     {
  1500.         return $this->hasFormFieldDescription($name) ? $this->formFieldDescriptions[$name] : null;
  1501.     }
  1502.     /**
  1503.      * Returns true if the admin has a FieldDescription with the given $name.
  1504.      *
  1505.      * @param string $name
  1506.      *
  1507.      * @return bool
  1508.      */
  1509.     public function hasFormFieldDescription($name)
  1510.     {
  1511.         return \array_key_exists($name$this->formFieldDescriptions) ? true false;
  1512.     }
  1513.     public function addFormFieldDescription($nameFieldDescriptionInterface $fieldDescription)
  1514.     {
  1515.         $this->formFieldDescriptions[$name] = $fieldDescription;
  1516.     }
  1517.     /**
  1518.      * remove a FieldDescription.
  1519.      *
  1520.      * @param string $name
  1521.      */
  1522.     public function removeFormFieldDescription($name)
  1523.     {
  1524.         unset($this->formFieldDescriptions[$name]);
  1525.     }
  1526.     /**
  1527.      * build and return the collection of form FieldDescription.
  1528.      *
  1529.      * @return array collection of form FieldDescription
  1530.      */
  1531.     public function getShowFieldDescriptions()
  1532.     {
  1533.         $this->buildShow();
  1534.         return $this->showFieldDescriptions;
  1535.     }
  1536.     /**
  1537.      * Returns the form FieldDescription with the given $name.
  1538.      *
  1539.      * @param string $name
  1540.      *
  1541.      * @return FieldDescriptionInterface
  1542.      */
  1543.     public function getShowFieldDescription($name)
  1544.     {
  1545.         $this->buildShow();
  1546.         return $this->hasShowFieldDescription($name) ? $this->showFieldDescriptions[$name] : null;
  1547.     }
  1548.     public function hasShowFieldDescription($name)
  1549.     {
  1550.         return \array_key_exists($name$this->showFieldDescriptions);
  1551.     }
  1552.     public function addShowFieldDescription($nameFieldDescriptionInterface $fieldDescription)
  1553.     {
  1554.         $this->showFieldDescriptions[$name] = $fieldDescription;
  1555.     }
  1556.     public function removeShowFieldDescription($name)
  1557.     {
  1558.         unset($this->showFieldDescriptions[$name]);
  1559.     }
  1560.     public function getListFieldDescriptions()
  1561.     {
  1562.         $this->buildList();
  1563.         return $this->listFieldDescriptions;
  1564.     }
  1565.     public function getListFieldDescription($name)
  1566.     {
  1567.         if (!$this->hasListFieldDescription($name)) {
  1568.             @trigger_error(sprintf(
  1569.                 'Calling %s() when there is no list field description is deprecated since sonata-project/admin-bundle 3.66 and will throw an exception in 4.0. '.
  1570.                 'Use %s::hasListFieldDescription(\'%s\') to know if there is a list field description.',
  1571.                 __METHOD__,
  1572.                 __CLASS__,
  1573.                 $name
  1574.             ), E_USER_DEPRECATED);
  1575.             // NEXT_MAJOR : remove the previous `trigger_error()` call, the `return null` statement, uncomment the following exception and declare FieldDescriptionInterface as return type
  1576.             // throw new \LogicException(sprintf(
  1577.             //    'Admin "%s" has no list field description for %s.',
  1578.             //    static::class,
  1579.             //    $name
  1580.             // ));
  1581.             return null;
  1582.         }
  1583.         return $this->listFieldDescriptions[$name];
  1584.     }
  1585.     public function hasListFieldDescription($name)
  1586.     {
  1587.         $this->buildList();
  1588.         return \array_key_exists($name$this->listFieldDescriptions) ? true false;
  1589.     }
  1590.     public function addListFieldDescription($nameFieldDescriptionInterface $fieldDescription)
  1591.     {
  1592.         $this->listFieldDescriptions[$name] = $fieldDescription;
  1593.     }
  1594.     public function removeListFieldDescription($name)
  1595.     {
  1596.         unset($this->listFieldDescriptions[$name]);
  1597.     }
  1598.     public function getFilterFieldDescription($name)
  1599.     {
  1600.         return $this->hasFilterFieldDescription($name) ? $this->filterFieldDescriptions[$name] : null;
  1601.     }
  1602.     public function hasFilterFieldDescription($name)
  1603.     {
  1604.         return \array_key_exists($name$this->filterFieldDescriptions) ? true false;
  1605.     }
  1606.     public function addFilterFieldDescription($nameFieldDescriptionInterface $fieldDescription)
  1607.     {
  1608.         $this->filterFieldDescriptions[$name] = $fieldDescription;
  1609.     }
  1610.     public function removeFilterFieldDescription($name)
  1611.     {
  1612.         unset($this->filterFieldDescriptions[$name]);
  1613.     }
  1614.     public function getFilterFieldDescriptions()
  1615.     {
  1616.         $this->buildDatagrid();
  1617.         return $this->filterFieldDescriptions;
  1618.     }
  1619.     public function addChild(AdminInterface $child)
  1620.     {
  1621.         $parentAdmin $this;
  1622.         while ($parentAdmin->isChild() && $parentAdmin->getCode() !== $child->getCode()) {
  1623.             $parentAdmin $parentAdmin->getParent();
  1624.         }
  1625.         if ($parentAdmin->getCode() === $child->getCode()) {
  1626.             throw new \RuntimeException(sprintf(
  1627.                 'Circular reference detected! The child admin `%s` is already in the parent tree of the `%s` admin.',
  1628.                 $child->getCode(),
  1629.                 $this->getCode()
  1630.             ));
  1631.         }
  1632.         $this->children[$child->getCode()] = $child;
  1633.         $child->setParent($this);
  1634.         // NEXT_MAJOR: remove $args and add $field parameter to this function on next Major
  1635.         $args = \func_get_args();
  1636.         if (isset($args[1])) {
  1637.             $child->addParentAssociationMapping($this->getCode(), $args[1]);
  1638.         } else {
  1639.             @trigger_error(
  1640.                 'Calling "addChild" without second argument is deprecated since'
  1641.                 .' sonata-project/admin-bundle 3.35 and will not be allowed in 4.0.',
  1642.                 E_USER_DEPRECATED
  1643.             );
  1644.         }
  1645.     }
  1646.     public function hasChild($code)
  1647.     {
  1648.         return isset($this->children[$code]);
  1649.     }
  1650.     public function getChildren()
  1651.     {
  1652.         return $this->children;
  1653.     }
  1654.     public function getChild($code)
  1655.     {
  1656.         return $this->hasChild($code) ? $this->children[$code] : null;
  1657.     }
  1658.     public function setParent(AdminInterface $parent)
  1659.     {
  1660.         $this->parent $parent;
  1661.     }
  1662.     public function getParent()
  1663.     {
  1664.         if (!$this->isChild()) {
  1665.             @trigger_error(sprintf(
  1666.                 'Calling %s() when there is no parent is deprecated since sonata-project/admin-bundle 3.66 and will throw an exception in 4.0. '.
  1667.                 'Use %s::isChild() to know if there is a parent.',
  1668.                 __METHOD__,
  1669.                 __CLASS__
  1670.             ), E_USER_DEPRECATED);
  1671.             // NEXT_MAJOR : remove the previous `trigger_error()` call, the `return null` statement, uncomment the following exception and declare AdminInterface as return type
  1672.             // throw new \LogicException(sprintf(
  1673.             //    'Admin "%s" has no parent.',
  1674.             //    static::class
  1675.             // ));
  1676.             return null;
  1677.         }
  1678.         return $this->parent;
  1679.     }
  1680.     final public function getRootAncestor()
  1681.     {
  1682.         $parent $this;
  1683.         while ($parent->isChild()) {
  1684.             $parent $parent->getParent();
  1685.         }
  1686.         return $parent;
  1687.     }
  1688.     final public function getChildDepth()
  1689.     {
  1690.         $parent $this;
  1691.         $depth 0;
  1692.         while ($parent->isChild()) {
  1693.             $parent $parent->getParent();
  1694.             ++$depth;
  1695.         }
  1696.         return $depth;
  1697.     }
  1698.     final public function getCurrentLeafChildAdmin()
  1699.     {
  1700.         $child $this->getCurrentChildAdmin();
  1701.         if (null === $child) {
  1702.             return null;
  1703.         }
  1704.         for ($c $childnull !== $c$c $child->getCurrentChildAdmin()) {
  1705.             $child $c;
  1706.         }
  1707.         return $child;
  1708.     }
  1709.     public function isChild()
  1710.     {
  1711.         return $this->parent instanceof AdminInterface;
  1712.     }
  1713.     /**
  1714.      * Returns true if the admin has children, false otherwise.
  1715.      *
  1716.      * @return bool if the admin has children
  1717.      */
  1718.     public function hasChildren()
  1719.     {
  1720.         return \count($this->children) > 0;
  1721.     }
  1722.     public function setUniqid($uniqid)
  1723.     {
  1724.         $this->uniqid $uniqid;
  1725.     }
  1726.     public function getUniqid()
  1727.     {
  1728.         if (!$this->uniqid) {
  1729.             $this->uniqid 's'.uniqid();
  1730.         }
  1731.         return $this->uniqid;
  1732.     }
  1733.     /**
  1734.      * Returns the classname label.
  1735.      *
  1736.      * @return string the classname label
  1737.      */
  1738.     public function getClassnameLabel()
  1739.     {
  1740.         return $this->classnameLabel;
  1741.     }
  1742.     public function getPersistentParameters()
  1743.     {
  1744.         $parameters = [];
  1745.         foreach ($this->getExtensions() as $extension) {
  1746.             $params $extension->getPersistentParameters($this);
  1747.             if (!\is_array($params)) {
  1748.                 throw new \RuntimeException(sprintf('The %s::getPersistentParameters must return an array', \get_class($extension)));
  1749.             }
  1750.             $parameters array_merge($parameters$params);
  1751.         }
  1752.         return $parameters;
  1753.     }
  1754.     /**
  1755.      * @param string $name
  1756.      *
  1757.      * @return mixed|null
  1758.      */
  1759.     public function getPersistentParameter($name)
  1760.     {
  1761.         $parameters $this->getPersistentParameters();
  1762.         return $parameters[$name] ?? null;
  1763.     }
  1764.     public function getBreadcrumbs($action)
  1765.     {
  1766.         @trigger_error(
  1767.             'The '.__METHOD__.' method is deprecated since version 3.2 and will be removed in 4.0.'.
  1768.             ' Use Sonata\AdminBundle\Admin\BreadcrumbsBuilder::getBreadcrumbs instead.',
  1769.             E_USER_DEPRECATED
  1770.         );
  1771.         return $this->getBreadcrumbsBuilder()->getBreadcrumbs($this$action);
  1772.     }
  1773.     /**
  1774.      * Generates the breadcrumbs array.
  1775.      *
  1776.      * Note: the method will be called by the top admin instance (parent => child)
  1777.      *
  1778.      * @param string $action
  1779.      *
  1780.      * @return array
  1781.      */
  1782.     public function buildBreadcrumbs($action, ?ItemInterface $menu null)
  1783.     {
  1784.         @trigger_error(
  1785.             'The '.__METHOD__.' method is deprecated since version 3.2 and will be removed in 4.0.',
  1786.             E_USER_DEPRECATED
  1787.         );
  1788.         if (isset($this->breadcrumbs[$action])) {
  1789.             return $this->breadcrumbs[$action];
  1790.         }
  1791.         return $this->breadcrumbs[$action] = $this->getBreadcrumbsBuilder()
  1792.             ->buildBreadcrumbs($this$action$menu);
  1793.     }
  1794.     /**
  1795.      * NEXT_MAJOR : remove this method.
  1796.      *
  1797.      * @return BreadcrumbsBuilderInterface
  1798.      */
  1799.     final public function getBreadcrumbsBuilder()
  1800.     {
  1801.         @trigger_error(
  1802.             'The '.__METHOD__.' method is deprecated since version 3.2 and will be removed in 4.0.'.
  1803.             ' Use the sonata.admin.breadcrumbs_builder service instead.',
  1804.             E_USER_DEPRECATED
  1805.         );
  1806.         if (null === $this->breadcrumbsBuilder) {
  1807.             $this->breadcrumbsBuilder = new BreadcrumbsBuilder(
  1808.                 $this->getConfigurationPool()->getContainer()->getParameter('sonata.admin.configuration.breadcrumbs')
  1809.             );
  1810.         }
  1811.         return $this->breadcrumbsBuilder;
  1812.     }
  1813.     /**
  1814.      * NEXT_MAJOR : remove this method.
  1815.      *
  1816.      * @return AbstractAdmin
  1817.      */
  1818.     final public function setBreadcrumbsBuilder(BreadcrumbsBuilderInterface $value)
  1819.     {
  1820.         @trigger_error(
  1821.             'The '.__METHOD__.' method is deprecated since version 3.2 and will be removed in 4.0.'.
  1822.             ' Use the sonata.admin.breadcrumbs_builder service instead.',
  1823.             E_USER_DEPRECATED
  1824.         );
  1825.         $this->breadcrumbsBuilder $value;
  1826.         return $this;
  1827.     }
  1828.     public function setCurrentChild($currentChild)
  1829.     {
  1830.         $this->currentChild $currentChild;
  1831.     }
  1832.     /**
  1833.      * NEXT_MAJOR: Remove this method.
  1834.      *
  1835.      * @deprecated since sonata-project/admin-bundle 3.65, to be removed in 4.0
  1836.      */
  1837.     public function getCurrentChild()
  1838.     {
  1839.         @trigger_error(
  1840.             sprintf(
  1841.                 'The %s() method is deprecated since version 3.65 and will be removed in 4.0. Use %s::isCurrentChild() instead.',
  1842.                 __METHOD__,
  1843.                 __CLASS__
  1844.             ),
  1845.             E_USER_DEPRECATED
  1846.         );
  1847.         return $this->currentChild;
  1848.     }
  1849.     public function isCurrentChild(): bool
  1850.     {
  1851.         return $this->currentChild;
  1852.     }
  1853.     /**
  1854.      * Returns the current child admin instance.
  1855.      *
  1856.      * @return AdminInterface|null the current child admin instance
  1857.      */
  1858.     public function getCurrentChildAdmin()
  1859.     {
  1860.         foreach ($this->children as $children) {
  1861.             if ($children->isCurrentChild()) {
  1862.                 return $children;
  1863.             }
  1864.         }
  1865.         return null;
  1866.     }
  1867.     public function trans($id, array $parameters = [], $domain null$locale null)
  1868.     {
  1869.         @trigger_error(
  1870.             'The '.__METHOD__.' method is deprecated since version 3.9 and will be removed in 4.0.',
  1871.             E_USER_DEPRECATED
  1872.         );
  1873.         $domain $domain ?: $this->getTranslationDomain();
  1874.         return $this->translator->trans($id$parameters$domain$locale);
  1875.     }
  1876.     /**
  1877.      * Translate a message id.
  1878.      *
  1879.      * NEXT_MAJOR: remove this method
  1880.      *
  1881.      * @param string      $id
  1882.      * @param int         $count
  1883.      * @param string|null $domain
  1884.      * @param string|null $locale
  1885.      *
  1886.      * @return string the translated string
  1887.      *
  1888.      * @deprecated since sonata-project/admin-bundle 3.9, to be removed with 4.0
  1889.      */
  1890.     public function transChoice($id$count, array $parameters = [], $domain null$locale null)
  1891.     {
  1892.         @trigger_error(
  1893.             'The '.__METHOD__.' method is deprecated since version 3.9 and will be removed in 4.0.',
  1894.             E_USER_DEPRECATED
  1895.         );
  1896.         $domain $domain ?: $this->getTranslationDomain();
  1897.         return $this->translator->transChoice($id$count$parameters$domain$locale);
  1898.     }
  1899.     public function setTranslationDomain($translationDomain)
  1900.     {
  1901.         $this->translationDomain $translationDomain;
  1902.     }
  1903.     public function getTranslationDomain()
  1904.     {
  1905.         return $this->translationDomain;
  1906.     }
  1907.     /**
  1908.      * {@inheritdoc}
  1909.      *
  1910.      * NEXT_MAJOR: remove this method
  1911.      *
  1912.      * @deprecated since sonata-project/admin-bundle 3.9, to be removed with 4.0
  1913.      */
  1914.     public function setTranslator(TranslatorInterface $translator)
  1915.     {
  1916.         $args = \func_get_args();
  1917.         if (isset($args[1]) && $args[1]) {
  1918.             @trigger_error(
  1919.                 'The '.__METHOD__.' method is deprecated since version 3.9 and will be removed in 4.0.',
  1920.                 E_USER_DEPRECATED
  1921.             );
  1922.         }
  1923.         $this->translator $translator;
  1924.     }
  1925.     /**
  1926.      * {@inheritdoc}
  1927.      *
  1928.      * NEXT_MAJOR: remove this method
  1929.      *
  1930.      * @deprecated since sonata-project/admin-bundle 3.9, to be removed with 4.0
  1931.      */
  1932.     public function getTranslator()
  1933.     {
  1934.         @trigger_error(
  1935.             'The '.__METHOD__.' method is deprecated since version 3.9 and will be removed in 4.0.',
  1936.             E_USER_DEPRECATED
  1937.         );
  1938.         return $this->translator;
  1939.     }
  1940.     public function getTranslationLabel($label$context ''$type '')
  1941.     {
  1942.         return $this->getLabelTranslatorStrategy()->getLabel($label$context$type);
  1943.     }
  1944.     public function setRequest(Request $request)
  1945.     {
  1946.         $this->request $request;
  1947.         foreach ($this->getChildren() as $children) {
  1948.             $children->setRequest($request);
  1949.         }
  1950.     }
  1951.     public function getRequest()
  1952.     {
  1953.         if (!$this->request) {
  1954.             // NEXT_MAJOR: Throw \LogicException instead.
  1955.             throw new \RuntimeException('The Request object has not been set');
  1956.         }
  1957.         return $this->request;
  1958.     }
  1959.     public function hasRequest()
  1960.     {
  1961.         return null !== $this->request;
  1962.     }
  1963.     public function setFormContractor(FormContractorInterface $formBuilder)
  1964.     {
  1965.         $this->formContractor $formBuilder;
  1966.     }
  1967.     /**
  1968.      * @return FormContractorInterface
  1969.      */
  1970.     public function getFormContractor()
  1971.     {
  1972.         return $this->formContractor;
  1973.     }
  1974.     public function setDatagridBuilder(DatagridBuilderInterface $datagridBuilder)
  1975.     {
  1976.         $this->datagridBuilder $datagridBuilder;
  1977.     }
  1978.     public function getDatagridBuilder()
  1979.     {
  1980.         return $this->datagridBuilder;
  1981.     }
  1982.     public function setListBuilder(ListBuilderInterface $listBuilder)
  1983.     {
  1984.         $this->listBuilder $listBuilder;
  1985.     }
  1986.     public function getListBuilder()
  1987.     {
  1988.         return $this->listBuilder;
  1989.     }
  1990.     public function setShowBuilder(ShowBuilderInterface $showBuilder)
  1991.     {
  1992.         $this->showBuilder $showBuilder;
  1993.     }
  1994.     /**
  1995.      * @return ShowBuilderInterface
  1996.      */
  1997.     public function getShowBuilder()
  1998.     {
  1999.         return $this->showBuilder;
  2000.     }
  2001.     public function setConfigurationPool(Pool $configurationPool)
  2002.     {
  2003.         $this->configurationPool $configurationPool;
  2004.     }
  2005.     /**
  2006.      * @return Pool
  2007.      */
  2008.     public function getConfigurationPool()
  2009.     {
  2010.         return $this->configurationPool;
  2011.     }
  2012.     public function setRouteGenerator(RouteGeneratorInterface $routeGenerator)
  2013.     {
  2014.         $this->routeGenerator $routeGenerator;
  2015.     }
  2016.     /**
  2017.      * @return RouteGeneratorInterface
  2018.      */
  2019.     public function getRouteGenerator()
  2020.     {
  2021.         return $this->routeGenerator;
  2022.     }
  2023.     public function getCode()
  2024.     {
  2025.         return $this->code;
  2026.     }
  2027.     /**
  2028.      * NEXT_MAJOR: Remove this function.
  2029.      *
  2030.      * @deprecated This method is deprecated since sonata-project/admin-bundle 3.24 and will be removed in 4.0
  2031.      *
  2032.      * @param string $baseCodeRoute
  2033.      */
  2034.     public function setBaseCodeRoute($baseCodeRoute)
  2035.     {
  2036.         @trigger_error(
  2037.             'The '.__METHOD__.' is deprecated since 3.24 and will be removed in 4.0.',
  2038.             E_USER_DEPRECATED
  2039.         );
  2040.         $this->baseCodeRoute $baseCodeRoute;
  2041.     }
  2042.     public function getBaseCodeRoute()
  2043.     {
  2044.         // NEXT_MAJOR: Uncomment the following lines.
  2045.         // if ($this->isChild()) {
  2046.         //     return $this->getParent()->getBaseCodeRoute().'|'.$this->getCode();
  2047.         // }
  2048.         //
  2049.         // return $this->getCode();
  2050.         // NEXT_MAJOR: Remove all the code below.
  2051.         if ($this->isChild()) {
  2052.             $parentCode $this->getParent()->getCode();
  2053.             if ($this->getParent()->isChild()) {
  2054.                 $parentCode $this->getParent()->getBaseCodeRoute();
  2055.             }
  2056.             return $parentCode.'|'.$this->getCode();
  2057.         }
  2058.         return $this->baseCodeRoute;
  2059.     }
  2060.     public function getModelManager()
  2061.     {
  2062.         return $this->modelManager;
  2063.     }
  2064.     public function setModelManager(ModelManagerInterface $modelManager)
  2065.     {
  2066.         $this->modelManager $modelManager;
  2067.     }
  2068.     public function getManagerType()
  2069.     {
  2070.         return $this->managerType;
  2071.     }
  2072.     /**
  2073.      * @param string $type
  2074.      */
  2075.     public function setManagerType($type)
  2076.     {
  2077.         $this->managerType $type;
  2078.     }
  2079.     public function getObjectIdentifier()
  2080.     {
  2081.         return $this->getCode();
  2082.     }
  2083.     /**
  2084.      * Set the roles and permissions per role.
  2085.      */
  2086.     public function setSecurityInformation(array $information)
  2087.     {
  2088.         $this->securityInformation $information;
  2089.     }
  2090.     public function getSecurityInformation()
  2091.     {
  2092.         return $this->securityInformation;
  2093.     }
  2094.     /**
  2095.      * Return the list of permissions the user should have in order to display the admin.
  2096.      *
  2097.      * @param string $context
  2098.      *
  2099.      * @return array
  2100.      */
  2101.     public function getPermissionsShow($context)
  2102.     {
  2103.         switch ($context) {
  2104.             case self::CONTEXT_DASHBOARD:
  2105.             case self::CONTEXT_MENU:
  2106.             default:
  2107.                 return ['LIST'];
  2108.         }
  2109.     }
  2110.     public function showIn($context)
  2111.     {
  2112.         switch ($context) {
  2113.             case self::CONTEXT_DASHBOARD:
  2114.             case self::CONTEXT_MENU:
  2115.             default:
  2116.                 return $this->isGranted($this->getPermissionsShow($context));
  2117.         }
  2118.     }
  2119.     public function createObjectSecurity($object)
  2120.     {
  2121.         $this->getSecurityHandler()->createObjectSecurity($this$object);
  2122.     }
  2123.     public function setSecurityHandler(SecurityHandlerInterface $securityHandler)
  2124.     {
  2125.         $this->securityHandler $securityHandler;
  2126.     }
  2127.     public function getSecurityHandler()
  2128.     {
  2129.         return $this->securityHandler;
  2130.     }
  2131.     public function isGranted($name$object null)
  2132.     {
  2133.         $objectRef $object '/'.spl_object_hash($object).'#'.$this->id($object) : '';
  2134.         $key md5(json_encode($name).$objectRef);
  2135.         if (!\array_key_exists($key$this->cacheIsGranted)) {
  2136.             $this->cacheIsGranted[$key] = $this->securityHandler->isGranted($this$name$object ?: $this);
  2137.         }
  2138.         return $this->cacheIsGranted[$key];
  2139.     }
  2140.     public function getUrlSafeIdentifier($entity)
  2141.     {
  2142.         return $this->getModelManager()->getUrlSafeIdentifier($entity);
  2143.     }
  2144.     public function getNormalizedIdentifier($entity)
  2145.     {
  2146.         return $this->getModelManager()->getNormalizedIdentifier($entity);
  2147.     }
  2148.     public function id($entity)
  2149.     {
  2150.         return $this->getNormalizedIdentifier($entity);
  2151.     }
  2152.     public function setValidator($validator)
  2153.     {
  2154.         // NEXT_MAJOR: Move ValidatorInterface check to method signature
  2155.         if (!$validator instanceof ValidatorInterface) {
  2156.             throw new \InvalidArgumentException(
  2157.                 'Argument 1 must be an instance of Symfony\Component\Validator\Validator\ValidatorInterface'
  2158.             );
  2159.         }
  2160.         $this->validator $validator;
  2161.     }
  2162.     public function getValidator()
  2163.     {
  2164.         return $this->validator;
  2165.     }
  2166.     public function getShow()
  2167.     {
  2168.         $this->buildShow();
  2169.         return $this->show;
  2170.     }
  2171.     public function setFormTheme(array $formTheme)
  2172.     {
  2173.         $this->formTheme $formTheme;
  2174.     }
  2175.     public function getFormTheme()
  2176.     {
  2177.         return $this->formTheme;
  2178.     }
  2179.     public function setFilterTheme(array $filterTheme)
  2180.     {
  2181.         $this->filterTheme $filterTheme;
  2182.     }
  2183.     public function getFilterTheme()
  2184.     {
  2185.         return $this->filterTheme;
  2186.     }
  2187.     public function addExtension(AdminExtensionInterface $extension)
  2188.     {
  2189.         $this->extensions[] = $extension;
  2190.     }
  2191.     public function getExtensions()
  2192.     {
  2193.         return $this->extensions;
  2194.     }
  2195.     public function setMenuFactory(FactoryInterface $menuFactory)
  2196.     {
  2197.         $this->menuFactory $menuFactory;
  2198.     }
  2199.     public function getMenuFactory()
  2200.     {
  2201.         return $this->menuFactory;
  2202.     }
  2203.     public function setRouteBuilder(RouteBuilderInterface $routeBuilder)
  2204.     {
  2205.         $this->routeBuilder $routeBuilder;
  2206.     }
  2207.     public function getRouteBuilder()
  2208.     {
  2209.         return $this->routeBuilder;
  2210.     }
  2211.     public function toString($object)
  2212.     {
  2213.         if (!\is_object($object)) {
  2214.             return '';
  2215.         }
  2216.         if (method_exists($object'__toString') && null !== $object->__toString()) {
  2217.             return (string) $object;
  2218.         }
  2219.         return sprintf('%s:%s'ClassUtils::getClass($object), spl_object_hash($object));
  2220.     }
  2221.     public function setLabelTranslatorStrategy(LabelTranslatorStrategyInterface $labelTranslatorStrategy)
  2222.     {
  2223.         $this->labelTranslatorStrategy $labelTranslatorStrategy;
  2224.     }
  2225.     public function getLabelTranslatorStrategy()
  2226.     {
  2227.         return $this->labelTranslatorStrategy;
  2228.     }
  2229.     public function supportsPreviewMode()
  2230.     {
  2231.         return $this->supportsPreviewMode;
  2232.     }
  2233.     /**
  2234.      * Set custom per page options.
  2235.      */
  2236.     public function setPerPageOptions(array $options)
  2237.     {
  2238.         $this->perPageOptions $options;
  2239.     }
  2240.     /**
  2241.      * Returns predefined per page options.
  2242.      *
  2243.      * @return array
  2244.      */
  2245.     public function getPerPageOptions()
  2246.     {
  2247.         return $this->perPageOptions;
  2248.     }
  2249.     /**
  2250.      * Set pager type.
  2251.      *
  2252.      * @param string $pagerType
  2253.      */
  2254.     public function setPagerType($pagerType)
  2255.     {
  2256.         $this->pagerType $pagerType;
  2257.     }
  2258.     /**
  2259.      * Get pager type.
  2260.      *
  2261.      * @return string
  2262.      */
  2263.     public function getPagerType()
  2264.     {
  2265.         return $this->pagerType;
  2266.     }
  2267.     /**
  2268.      * Returns true if the per page value is allowed, false otherwise.
  2269.      *
  2270.      * @param int $perPage
  2271.      *
  2272.      * @return bool
  2273.      */
  2274.     public function determinedPerPageValue($perPage)
  2275.     {
  2276.         return \in_array($perPage$this->perPageOptionstrue);
  2277.     }
  2278.     public function isAclEnabled()
  2279.     {
  2280.         return $this->getSecurityHandler() instanceof AclSecurityHandlerInterface;
  2281.     }
  2282.     public function getObjectMetadata($object)
  2283.     {
  2284.         return new Metadata($this->toString($object));
  2285.     }
  2286.     public function getListModes()
  2287.     {
  2288.         return $this->listModes;
  2289.     }
  2290.     public function setListMode($mode)
  2291.     {
  2292.         if (!$this->hasRequest()) {
  2293.             throw new \RuntimeException(sprintf('No request attached to the current admin: %s'$this->getCode()));
  2294.         }
  2295.         $this->getRequest()->getSession()->set(sprintf('%s.list_mode'$this->getCode()), $mode);
  2296.     }
  2297.     public function getListMode()
  2298.     {
  2299.         if (!$this->hasRequest()) {
  2300.             return 'list';
  2301.         }
  2302.         return $this->getRequest()->getSession()->get(sprintf('%s.list_mode'$this->getCode()), 'list');
  2303.     }
  2304.     public function getAccessMapping()
  2305.     {
  2306.         return $this->accessMapping;
  2307.     }
  2308.     public function checkAccess($action$object null)
  2309.     {
  2310.         $access $this->getAccess();
  2311.         if (!\array_key_exists($action$access)) {
  2312.             throw new \InvalidArgumentException(sprintf(
  2313.                 'Action "%s" could not be found in access mapping.'
  2314.                 .' Please make sure your action is defined into your admin class accessMapping property.',
  2315.                 $action
  2316.             ));
  2317.         }
  2318.         if (!\is_array($access[$action])) {
  2319.             $access[$action] = [$access[$action]];
  2320.         }
  2321.         foreach ($access[$action] as $role) {
  2322.             if (false === $this->isGranted($role$object)) {
  2323.                 throw new AccessDeniedException(sprintf('Access Denied to the action %s and role %s'$action$role));
  2324.             }
  2325.         }
  2326.     }
  2327.     /**
  2328.      * Hook to handle access authorization, without throw Exception.
  2329.      *
  2330.      * @param string $action
  2331.      * @param object $object
  2332.      *
  2333.      * @return bool
  2334.      */
  2335.     public function hasAccess($action$object null)
  2336.     {
  2337.         $access $this->getAccess();
  2338.         if (!\array_key_exists($action$access)) {
  2339.             return false;
  2340.         }
  2341.         if (!\is_array($access[$action])) {
  2342.             $access[$action] = [$access[$action]];
  2343.         }
  2344.         foreach ($access[$action] as $role) {
  2345.             if (false === $this->isGranted($role$object)) {
  2346.                 return false;
  2347.             }
  2348.         }
  2349.         return true;
  2350.     }
  2351.     /**
  2352.      * @param string      $action
  2353.      * @param object|null $object
  2354.      *
  2355.      * @return array
  2356.      */
  2357.     public function configureActionButtons($action$object null)
  2358.     {
  2359.         $list = [];
  2360.         if (\in_array($action, ['tree''show''edit''delete''list''batch'], true)
  2361.             && $this->hasAccess('create')
  2362.             && $this->hasRoute('create')
  2363.         ) {
  2364.             $list['create'] = [
  2365.                 // NEXT_MAJOR: Remove this line and use commented line below it instead
  2366.                 'template' => $this->getTemplate('button_create'),
  2367. //                'template' => $this->getTemplateRegistry()->getTemplate('button_create'),
  2368.             ];
  2369.         }
  2370.         if (\in_array($action, ['show''delete''acl''history'], true)
  2371.             && $this->canAccessObject('edit'$object)
  2372.             && $this->hasRoute('edit')
  2373.         ) {
  2374.             $list['edit'] = [
  2375.                 // NEXT_MAJOR: Remove this line and use commented line below it instead
  2376.                 'template' => $this->getTemplate('button_edit'),
  2377.                 //'template' => $this->getTemplateRegistry()->getTemplate('button_edit'),
  2378.             ];
  2379.         }
  2380.         if (\in_array($action, ['show''edit''acl'], true)
  2381.             && $this->canAccessObject('history'$object)
  2382.             && $this->hasRoute('history')
  2383.         ) {
  2384.             $list['history'] = [
  2385.                 // NEXT_MAJOR: Remove this line and use commented line below it instead
  2386.                 'template' => $this->getTemplate('button_history'),
  2387.                 // 'template' => $this->getTemplateRegistry()->getTemplate('button_history'),
  2388.             ];
  2389.         }
  2390.         if (\in_array($action, ['edit''history'], true)
  2391.             && $this->isAclEnabled()
  2392.             && $this->canAccessObject('acl'$object)
  2393.             && $this->hasRoute('acl')
  2394.         ) {
  2395.             $list['acl'] = [
  2396.                 // NEXT_MAJOR: Remove this line and use commented line below it instead
  2397.                 'template' => $this->getTemplate('button_acl'),
  2398.                 // 'template' => $this->getTemplateRegistry()->getTemplate('button_acl'),
  2399.             ];
  2400.         }
  2401.         if (\in_array($action, ['edit''history''acl'], true)
  2402.             && $this->canAccessObject('show'$object)
  2403.             && \count($this->getShow()) > 0
  2404.             && $this->hasRoute('show')
  2405.         ) {
  2406.             $list['show'] = [
  2407.                 // NEXT_MAJOR: Remove this line and use commented line below it instead
  2408.                 'template' => $this->getTemplate('button_show'),
  2409.                 // 'template' => $this->getTemplateRegistry()->getTemplate('button_show'),
  2410.             ];
  2411.         }
  2412.         if (\in_array($action, ['show''edit''delete''acl''batch'], true)
  2413.             && $this->hasAccess('list')
  2414.             && $this->hasRoute('list')
  2415.         ) {
  2416.             $list['list'] = [
  2417.                 // NEXT_MAJOR: Remove this line and use commented line below it instead
  2418.                 'template' => $this->getTemplate('button_list'),
  2419.                 // 'template' => $this->getTemplateRegistry()->getTemplate('button_list'),
  2420.             ];
  2421.         }
  2422.         return $list;
  2423.     }
  2424.     /**
  2425.      * @param string $action
  2426.      * @param object $object
  2427.      *
  2428.      * @return array
  2429.      */
  2430.     public function getActionButtons($action$object null)
  2431.     {
  2432.         $list $this->configureActionButtons($action$object);
  2433.         foreach ($this->getExtensions() as $extension) {
  2434.             // NEXT_MAJOR: remove method check
  2435.             if (method_exists($extension'configureActionButtons')) {
  2436.                 $list $extension->configureActionButtons($this$list$action$object);
  2437.             }
  2438.         }
  2439.         return $list;
  2440.     }
  2441.     /**
  2442.      * Get the list of actions that can be accessed directly from the dashboard.
  2443.      *
  2444.      * @return array
  2445.      */
  2446.     public function getDashboardActions()
  2447.     {
  2448.         $actions = [];
  2449.         if ($this->hasRoute('create') && $this->hasAccess('create')) {
  2450.             $actions['create'] = [
  2451.                 'label' => 'link_add',
  2452.                 'translation_domain' => 'SonataAdminBundle',
  2453.                 // NEXT_MAJOR: Remove this line and use commented line below it instead
  2454.                 'template' => $this->getTemplate('action_create'),
  2455.                 // 'template' => $this->getTemplateRegistry()->getTemplate('action_create'),
  2456.                 'url' => $this->generateUrl('create'),
  2457.                 'icon' => 'plus-circle',
  2458.             ];
  2459.         }
  2460.         if ($this->hasRoute('list') && $this->hasAccess('list')) {
  2461.             $actions['list'] = [
  2462.                 'label' => 'link_list',
  2463.                 'translation_domain' => 'SonataAdminBundle',
  2464.                 'url' => $this->generateUrl('list'),
  2465.                 'icon' => 'list',
  2466.             ];
  2467.         }
  2468.         return $actions;
  2469.     }
  2470.     /**
  2471.      * Setting to true will enable mosaic button for the admin screen.
  2472.      * Setting to false will hide mosaic button for the admin screen.
  2473.      *
  2474.      * @param bool $isShown
  2475.      */
  2476.     final public function showMosaicButton($isShown)
  2477.     {
  2478.         if ($isShown) {
  2479.             $this->listModes['mosaic'] = ['class' => static::MOSAIC_ICON_CLASS];
  2480.         } else {
  2481.             unset($this->listModes['mosaic']);
  2482.         }
  2483.     }
  2484.     /**
  2485.      * @param object $object
  2486.      */
  2487.     final public function getSearchResultLink($object)
  2488.     {
  2489.         foreach ($this->searchResultActions as $action) {
  2490.             if ($this->hasRoute($action) && $this->hasAccess($action$object)) {
  2491.                 return $this->generateObjectUrl($action$object);
  2492.             }
  2493.         }
  2494.         return null;
  2495.     }
  2496.     /**
  2497.      * Checks if a filter type is set to a default value.
  2498.      *
  2499.      * @param string $name
  2500.      *
  2501.      * @return bool
  2502.      */
  2503.     final public function isDefaultFilter($name)
  2504.     {
  2505.         $filter $this->getFilterParameters();
  2506.         $default $this->getDefaultFilterValues();
  2507.         if (!\array_key_exists($name$filter) || !\array_key_exists($name$default)) {
  2508.             return false;
  2509.         }
  2510.         return $filter[$name] === $default[$name];
  2511.     }
  2512.     /**
  2513.      * Check object existence and access, without throw Exception.
  2514.      *
  2515.      * @param string $action
  2516.      * @param object $object
  2517.      *
  2518.      * @return bool
  2519.      */
  2520.     public function canAccessObject($action$object)
  2521.     {
  2522.         return $object && $this->id($object) && $this->hasAccess($action$object);
  2523.     }
  2524.     protected function configureQuery(ProxyQueryInterface $query): ProxyQueryInterface
  2525.     {
  2526.         return $query;
  2527.     }
  2528.     /**
  2529.      * @return MutableTemplateRegistryInterface
  2530.      */
  2531.     final protected function getTemplateRegistry()
  2532.     {
  2533.         return $this->templateRegistry;
  2534.     }
  2535.     /**
  2536.      * Returns a list of default filters.
  2537.      *
  2538.      * @return array
  2539.      */
  2540.     final protected function getDefaultFilterValues()
  2541.     {
  2542.         $defaultFilterValues = [];
  2543.         $this->configureDefaultFilterValues($defaultFilterValues);
  2544.         foreach ($this->getExtensions() as $extension) {
  2545.             // NEXT_MAJOR: remove method check
  2546.             if (method_exists($extension'configureDefaultFilterValues')) {
  2547.                 $extension->configureDefaultFilterValues($this$defaultFilterValues);
  2548.             }
  2549.         }
  2550.         return $defaultFilterValues;
  2551.     }
  2552.     protected function configureFormFields(FormMapper $form)
  2553.     {
  2554.     }
  2555.     protected function configureListFields(ListMapper $list)
  2556.     {
  2557.     }
  2558.     protected function configureDatagridFilters(DatagridMapper $filter)
  2559.     {
  2560.     }
  2561.     protected function configureShowFields(ShowMapper $show)
  2562.     {
  2563.     }
  2564.     protected function configureRoutes(RouteCollection $collection)
  2565.     {
  2566.     }
  2567.     /**
  2568.      * Allows you to customize batch actions.
  2569.      *
  2570.      * @param array $actions List of actions
  2571.      *
  2572.      * @return array
  2573.      */
  2574.     protected function configureBatchActions($actions)
  2575.     {
  2576.         return $actions;
  2577.     }
  2578.     /**
  2579.      * NEXT_MAJOR: remove this method.
  2580.      *
  2581.      * @deprecated Use configureTabMenu instead
  2582.      */
  2583.     protected function configureSideMenu(ItemInterface $menu$action, ?AdminInterface $childAdmin null)
  2584.     {
  2585.     }
  2586.     /**
  2587.      * Configures the tab menu in your admin.
  2588.      *
  2589.      * @param string $action
  2590.      */
  2591.     protected function configureTabMenu(ItemInterface $menu$action, ?AdminInterface $childAdmin null)
  2592.     {
  2593.         // Use configureSideMenu not to mess with previous overrides
  2594.         // NEXT_MAJOR: remove this line
  2595.         $this->configureSideMenu($menu$action$childAdmin);
  2596.     }
  2597.     /**
  2598.      * build the view FieldDescription array.
  2599.      */
  2600.     protected function buildShow()
  2601.     {
  2602.         if ($this->show) {
  2603.             return;
  2604.         }
  2605.         $this->show = new FieldDescriptionCollection();
  2606.         $mapper = new ShowMapper($this->showBuilder$this->show$this);
  2607.         $this->configureShowFields($mapper);
  2608.         foreach ($this->getExtensions() as $extension) {
  2609.             $extension->configureShowFields($mapper);
  2610.         }
  2611.     }
  2612.     /**
  2613.      * build the list FieldDescription array.
  2614.      */
  2615.     protected function buildList()
  2616.     {
  2617.         if ($this->list) {
  2618.             return;
  2619.         }
  2620.         $this->list $this->getListBuilder()->getBaseList();
  2621.         $mapper = new ListMapper($this->getListBuilder(), $this->list$this);
  2622.         if (\count($this->getBatchActions()) > && $this->hasRequest() && !$this->getRequest()->isXmlHttpRequest()) {
  2623.             $fieldDescription $this->getModelManager()->getNewFieldDescriptionInstance(
  2624.                 $this->getClass(),
  2625.                 'batch',
  2626.                 [
  2627.                     'label' => 'batch',
  2628.                     'code' => '_batch',
  2629.                     'sortable' => false,
  2630.                     'virtual_field' => true,
  2631.                 ]
  2632.             );
  2633.             $fieldDescription->setAdmin($this);
  2634.             // NEXT_MAJOR: Remove this line and use commented line below it instead
  2635.             $fieldDescription->setTemplate($this->getTemplate('batch'));
  2636.             // $fieldDescription->setTemplate($this->getTemplateRegistry()->getTemplate('batch'));
  2637.             $mapper->add($fieldDescription'batch');
  2638.         }
  2639.         $this->configureListFields($mapper);
  2640.         foreach ($this->getExtensions() as $extension) {
  2641.             $extension->configureListFields($mapper);
  2642.         }
  2643.         if ($this->hasRequest() && $this->getRequest()->isXmlHttpRequest()) {
  2644.             $fieldDescription $this->getModelManager()->getNewFieldDescriptionInstance(
  2645.                 $this->getClass(),
  2646.                 'select',
  2647.                 [
  2648.                     'label' => false,
  2649.                     'code' => '_select',
  2650.                     'sortable' => false,
  2651.                     'virtual_field' => false,
  2652.                 ]
  2653.             );
  2654.             $fieldDescription->setAdmin($this);
  2655.             // NEXT_MAJOR: Remove this line and use commented line below it instead
  2656.             $fieldDescription->setTemplate($this->getTemplate('select'));
  2657.             // $fieldDescription->setTemplate($this->getTemplateRegistry()->getTemplate('select'));
  2658.             $mapper->add($fieldDescription'select');
  2659.         }
  2660.     }
  2661.     /**
  2662.      * Build the form FieldDescription collection.
  2663.      */
  2664.     protected function buildForm()
  2665.     {
  2666.         if ($this->form) {
  2667.             return;
  2668.         }
  2669.         // append parent object if any
  2670.         // todo : clean the way the Admin class can retrieve set the object
  2671.         if ($this->isChild() && $this->getParentAssociationMapping()) {
  2672.             $parent $this->getParent()->getObject($this->request->get($this->getParent()->getIdParameter()));
  2673.             $propertyAccessor $this->getConfigurationPool()->getPropertyAccessor();
  2674.             $propertyPath = new PropertyPath($this->getParentAssociationMapping());
  2675.             $object $this->getSubject();
  2676.             $value $propertyAccessor->getValue($object$propertyPath);
  2677.             if (\is_array($value) || $value instanceof \ArrayAccess) {
  2678.                 $value[] = $parent;
  2679.                 $propertyAccessor->setValue($object$propertyPath$value);
  2680.             } else {
  2681.                 $propertyAccessor->setValue($object$propertyPath$parent);
  2682.             }
  2683.         }
  2684.         $formBuilder $this->getFormBuilder();
  2685.         $formBuilder->addEventListener(FormEvents::POST_SUBMIT, function (FormEvent $event) {
  2686.             $this->preValidate($event->getData());
  2687.         }, 100);
  2688.         $this->form $formBuilder->getForm();
  2689.     }
  2690.     /**
  2691.      * Gets the subclass corresponding to the given name.
  2692.      *
  2693.      * @param string $name The name of the sub class
  2694.      *
  2695.      * @return string the subclass
  2696.      */
  2697.     protected function getSubClass($name)
  2698.     {
  2699.         if ($this->hasSubClass($name)) {
  2700.             return $this->subClasses[$name];
  2701.         }
  2702.         // NEXT_MAJOR: Throw \LogicException instead.
  2703.         throw new \RuntimeException(sprintf(
  2704.             'Unable to find the subclass `%s` for admin `%s`',
  2705.             $name,
  2706.             static::class
  2707.         ));
  2708.     }
  2709.     /**
  2710.      * Attach the inline validator to the model metadata, this must be done once per admin.
  2711.      */
  2712.     protected function attachInlineValidator()
  2713.     {
  2714.         $admin $this;
  2715.         // add the custom inline validation option
  2716.         $metadata $this->validator->getMetadataFor($this->getClass());
  2717.         $metadata->addConstraint(new InlineConstraint([
  2718.             'service' => $this,
  2719.             'method' => static function (ErrorElement $errorElement$object) use ($admin) {
  2720.                 /* @var \Sonata\AdminBundle\Admin\AdminInterface $admin */
  2721.                 // This avoid the main validation to be cascaded to children
  2722.                 // The problem occurs when a model Page has a collection of Page as property
  2723.                 if ($admin->hasSubject() && spl_object_hash($object) !== spl_object_hash($admin->getSubject())) {
  2724.                     return;
  2725.                 }
  2726.                 $admin->validate($errorElement$object);
  2727.                 foreach ($admin->getExtensions() as $extension) {
  2728.                     $extension->validate($admin$errorElement$object);
  2729.                 }
  2730.             },
  2731.             'serializingWarning' => true,
  2732.         ]));
  2733.     }
  2734.     /**
  2735.      * Predefine per page options.
  2736.      */
  2737.     protected function predefinePerPageOptions()
  2738.     {
  2739.         array_unshift($this->perPageOptions$this->maxPerPage);
  2740.         $this->perPageOptions array_unique($this->perPageOptions);
  2741.         sort($this->perPageOptions);
  2742.     }
  2743.     /**
  2744.      * Return list routes with permissions name.
  2745.      *
  2746.      * @return array<string, string>
  2747.      */
  2748.     protected function getAccess()
  2749.     {
  2750.         $access array_merge([
  2751.             'acl' => 'MASTER',
  2752.             'export' => 'EXPORT',
  2753.             'historyCompareRevisions' => 'EDIT',
  2754.             'historyViewRevision' => 'EDIT',
  2755.             'history' => 'EDIT',
  2756.             'edit' => 'EDIT',
  2757.             'show' => 'VIEW',
  2758.             'create' => 'CREATE',
  2759.             'delete' => 'DELETE',
  2760.             'batchDelete' => 'DELETE',
  2761.             'list' => 'LIST',
  2762.         ], $this->getAccessMapping());
  2763.         foreach ($this->extensions as $extension) {
  2764.             // NEXT_MAJOR: remove method check
  2765.             if (method_exists($extension'getAccessMapping')) {
  2766.                 $access array_merge($access$extension->getAccessMapping($this));
  2767.             }
  2768.         }
  2769.         return $access;
  2770.     }
  2771.     /**
  2772.      * Configures a list of default filters.
  2773.      */
  2774.     protected function configureDefaultFilterValues(array &$filterValues)
  2775.     {
  2776.     }
  2777.     /**
  2778.      * Build all the related urls to the current admin.
  2779.      */
  2780.     private function buildRoutes(): void
  2781.     {
  2782.         if ($this->loaded['routes']) {
  2783.             return;
  2784.         }
  2785.         $this->loaded['routes'] = true;
  2786.         $this->routes = new RouteCollection(
  2787.             $this->getBaseCodeRoute(),
  2788.             $this->getBaseRouteName(),
  2789.             $this->getBaseRoutePattern(),
  2790.             $this->getBaseControllerName()
  2791.         );
  2792.         $this->routeBuilder->build($this$this->routes);
  2793.         $this->configureRoutes($this->routes);
  2794.         foreach ($this->getExtensions() as $extension) {
  2795.             $extension->configureRoutes($this$this->routes);
  2796.         }
  2797.     }
  2798. }
  2799. class_exists(\Sonata\Form\Validator\ErrorElement::class);