Complex classes like AbstractAdmin often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use AbstractAdmin, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 59 | abstract class AbstractAdmin implements AdminInterface, DomainObjectInterface, AdminTreeInterface |
||
| 60 | { |
||
| 61 | public const CONTEXT_MENU = 'menu'; |
||
| 62 | public const CONTEXT_DASHBOARD = 'dashboard'; |
||
| 63 | |||
| 64 | public const CLASS_REGEX = |
||
| 65 | '@ |
||
| 66 | (?:([A-Za-z0-9]*)\\\)? # vendor name / app name |
||
| 67 | (Bundle\\\)? # optional bundle directory |
||
| 68 | ([A-Za-z0-9]+?)(?:Bundle)?\\\ # bundle name, with optional suffix |
||
| 69 | ( |
||
| 70 | Entity|Document|Model|PHPCR|CouchDocument|Phpcr| |
||
| 71 | Doctrine\\\Orm|Doctrine\\\Phpcr|Doctrine\\\MongoDB|Doctrine\\\CouchDB |
||
| 72 | )\\\(.*)@x'; |
||
| 73 | |||
| 74 | public const MOSAIC_ICON_CLASS = 'fa fa-th-large fa-fw'; |
||
| 75 | |||
| 76 | /** |
||
| 77 | * The list FieldDescription constructed from the configureListField method. |
||
| 78 | * |
||
| 79 | * @var array |
||
| 80 | */ |
||
| 81 | protected $listFieldDescriptions = []; |
||
| 82 | |||
| 83 | /** |
||
| 84 | * The show FieldDescription constructed from the configureShowFields method. |
||
| 85 | * |
||
| 86 | * @var array |
||
| 87 | */ |
||
| 88 | protected $showFieldDescriptions = []; |
||
| 89 | |||
| 90 | /** |
||
| 91 | * The list FieldDescription constructed from the configureFormField method. |
||
| 92 | * |
||
| 93 | * @var array |
||
| 94 | */ |
||
| 95 | protected $formFieldDescriptions = []; |
||
| 96 | |||
| 97 | /** |
||
| 98 | * The filter FieldDescription constructed from the configureFilterField method. |
||
| 99 | * |
||
| 100 | * @var array |
||
| 101 | */ |
||
| 102 | protected $filterFieldDescriptions = []; |
||
| 103 | |||
| 104 | /** |
||
| 105 | * The number of result to display in the list. |
||
| 106 | * |
||
| 107 | * @var int |
||
| 108 | */ |
||
| 109 | protected $maxPerPage = 32; |
||
| 110 | |||
| 111 | /** |
||
| 112 | * The maximum number of page numbers to display in the list. |
||
| 113 | * |
||
| 114 | * @var int |
||
| 115 | */ |
||
| 116 | protected $maxPageLinks = 25; |
||
| 117 | |||
| 118 | /** |
||
| 119 | * The base route name used to generate the routing information. |
||
| 120 | * |
||
| 121 | * @var string |
||
| 122 | */ |
||
| 123 | protected $baseRouteName; |
||
| 124 | |||
| 125 | /** |
||
| 126 | * The base route pattern used to generate the routing information. |
||
| 127 | * |
||
| 128 | * @var string |
||
| 129 | */ |
||
| 130 | protected $baseRoutePattern; |
||
| 131 | |||
| 132 | /** |
||
| 133 | * The base name controller used to generate the routing information. |
||
| 134 | * |
||
| 135 | * @var string |
||
| 136 | */ |
||
| 137 | protected $baseControllerName; |
||
| 138 | |||
| 139 | /** |
||
| 140 | * The label class name (used in the title/breadcrumb ...). |
||
| 141 | * |
||
| 142 | * @var string |
||
| 143 | */ |
||
| 144 | protected $classnameLabel; |
||
| 145 | |||
| 146 | /** |
||
| 147 | * The translation domain to be used to translate messages. |
||
| 148 | * |
||
| 149 | * @var string |
||
| 150 | */ |
||
| 151 | protected $translationDomain = 'messages'; |
||
| 152 | |||
| 153 | /** |
||
| 154 | * Options to set to the form (ie, validation_groups). |
||
| 155 | * |
||
| 156 | * @var array |
||
| 157 | */ |
||
| 158 | protected $formOptions = []; |
||
| 159 | |||
| 160 | /** |
||
| 161 | * Default values to the datagrid. |
||
| 162 | * |
||
| 163 | * @var array |
||
| 164 | */ |
||
| 165 | protected $datagridValues = [ |
||
| 166 | '_page' => 1, |
||
| 167 | '_per_page' => 32, |
||
| 168 | ]; |
||
| 169 | |||
| 170 | /** |
||
| 171 | * Predefined per page options. |
||
| 172 | * |
||
| 173 | * @var array |
||
| 174 | */ |
||
| 175 | protected $perPageOptions = [16, 32, 64, 128, 256]; |
||
| 176 | |||
| 177 | /** |
||
| 178 | * Pager type. |
||
| 179 | * |
||
| 180 | * @var string |
||
| 181 | */ |
||
| 182 | protected $pagerType = Pager::TYPE_DEFAULT; |
||
| 183 | |||
| 184 | /** |
||
| 185 | * The code related to the admin. |
||
| 186 | * |
||
| 187 | * @var string |
||
| 188 | */ |
||
| 189 | protected $code; |
||
| 190 | |||
| 191 | /** |
||
| 192 | * The label. |
||
| 193 | * |
||
| 194 | * @var string |
||
| 195 | */ |
||
| 196 | protected $label; |
||
| 197 | |||
| 198 | /** |
||
| 199 | * Whether or not to persist the filters in the session. |
||
| 200 | * |
||
| 201 | * NEXT_MAJOR: remove this property |
||
| 202 | * |
||
| 203 | * @var bool |
||
| 204 | * |
||
| 205 | * @deprecated since sonata-project/admin-bundle 3.34, to be removed in 4.0. |
||
| 206 | */ |
||
| 207 | protected $persistFilters = false; |
||
| 208 | |||
| 209 | /** |
||
| 210 | * Array of routes related to this admin. |
||
| 211 | * |
||
| 212 | * @var RouteCollection |
||
| 213 | */ |
||
| 214 | protected $routes; |
||
| 215 | |||
| 216 | /** |
||
| 217 | * The subject only set in edit/update/create mode. |
||
| 218 | * |
||
| 219 | * @var object|null |
||
| 220 | */ |
||
| 221 | protected $subject; |
||
| 222 | |||
| 223 | /** |
||
| 224 | * Define a Collection of child admin, ie /admin/order/{id}/order-element/{childId}. |
||
| 225 | * |
||
| 226 | * @var array |
||
| 227 | */ |
||
| 228 | protected $children = []; |
||
| 229 | |||
| 230 | /** |
||
| 231 | * Reference the parent admin. |
||
| 232 | * |
||
| 233 | * @var AdminInterface|null |
||
| 234 | */ |
||
| 235 | protected $parent; |
||
| 236 | |||
| 237 | /** |
||
| 238 | * The base code route refer to the prefix used to generate the route name. |
||
| 239 | * |
||
| 240 | * NEXT_MAJOR: remove this attribute. |
||
| 241 | * |
||
| 242 | * @deprecated This attribute is deprecated since sonata-project/admin-bundle 3.24 and will be removed in 4.0 |
||
| 243 | * |
||
| 244 | * @var string |
||
| 245 | */ |
||
| 246 | protected $baseCodeRoute = ''; |
||
| 247 | |||
| 248 | /** |
||
| 249 | * NEXT_MAJOR: should be default array and private. |
||
| 250 | * |
||
| 251 | * @var string|array |
||
| 252 | */ |
||
| 253 | protected $parentAssociationMapping; |
||
| 254 | |||
| 255 | /** |
||
| 256 | * Reference the parent FieldDescription related to this admin |
||
| 257 | * only set for FieldDescription which is associated to an Sub Admin instance. |
||
| 258 | * |
||
| 259 | * @var FieldDescriptionInterface |
||
| 260 | */ |
||
| 261 | protected $parentFieldDescription; |
||
| 262 | |||
| 263 | /** |
||
| 264 | * If true then the current admin is part of the nested admin set (from the url). |
||
| 265 | * |
||
| 266 | * @var bool |
||
| 267 | */ |
||
| 268 | protected $currentChild = false; |
||
| 269 | |||
| 270 | /** |
||
| 271 | * The uniqid is used to avoid clashing with 2 admin related to the code |
||
| 272 | * ie: a Block linked to a Block. |
||
| 273 | * |
||
| 274 | * @var string |
||
| 275 | */ |
||
| 276 | protected $uniqid; |
||
| 277 | |||
| 278 | /** |
||
| 279 | * The Entity or Document manager. |
||
| 280 | * |
||
| 281 | * @var ModelManagerInterface |
||
| 282 | */ |
||
| 283 | protected $modelManager; |
||
| 284 | |||
| 285 | /** |
||
| 286 | * The current request object. |
||
| 287 | * |
||
| 288 | * @var Request|null |
||
| 289 | */ |
||
| 290 | protected $request; |
||
| 291 | |||
| 292 | /** |
||
| 293 | * The translator component. |
||
| 294 | * |
||
| 295 | * NEXT_MAJOR: remove this property |
||
| 296 | * |
||
| 297 | * @var \Symfony\Component\Translation\TranslatorInterface |
||
| 298 | * |
||
| 299 | * @deprecated since sonata-project/admin-bundle 3.9, to be removed with 4.0 |
||
| 300 | */ |
||
| 301 | protected $translator; |
||
| 302 | |||
| 303 | /** |
||
| 304 | * The related form contractor. |
||
| 305 | * |
||
| 306 | * @var FormContractorInterface |
||
| 307 | */ |
||
| 308 | protected $formContractor; |
||
| 309 | |||
| 310 | /** |
||
| 311 | * The related list builder. |
||
| 312 | * |
||
| 313 | * @var ListBuilderInterface |
||
| 314 | */ |
||
| 315 | protected $listBuilder; |
||
| 316 | |||
| 317 | /** |
||
| 318 | * The related view builder. |
||
| 319 | * |
||
| 320 | * @var ShowBuilderInterface |
||
| 321 | */ |
||
| 322 | protected $showBuilder; |
||
| 323 | |||
| 324 | /** |
||
| 325 | * The related datagrid builder. |
||
| 326 | * |
||
| 327 | * @var DatagridBuilderInterface |
||
| 328 | */ |
||
| 329 | protected $datagridBuilder; |
||
| 330 | |||
| 331 | /** |
||
| 332 | * @var RouteBuilderInterface |
||
| 333 | */ |
||
| 334 | protected $routeBuilder; |
||
| 335 | |||
| 336 | /** |
||
| 337 | * The datagrid instance. |
||
| 338 | * |
||
| 339 | * @var DatagridInterface|null |
||
| 340 | */ |
||
| 341 | protected $datagrid; |
||
| 342 | |||
| 343 | /** |
||
| 344 | * The router instance. |
||
| 345 | * |
||
| 346 | * @var RouteGeneratorInterface|null |
||
| 347 | */ |
||
| 348 | protected $routeGenerator; |
||
| 349 | |||
| 350 | /** |
||
| 351 | * The generated breadcrumbs. |
||
| 352 | * |
||
| 353 | * NEXT_MAJOR : remove this property |
||
| 354 | * |
||
| 355 | * @var array |
||
| 356 | */ |
||
| 357 | protected $breadcrumbs = []; |
||
| 358 | |||
| 359 | /** |
||
| 360 | * @var SecurityHandlerInterface |
||
| 361 | */ |
||
| 362 | protected $securityHandler; |
||
| 363 | |||
| 364 | /** |
||
| 365 | * @var ValidatorInterface |
||
| 366 | */ |
||
| 367 | protected $validator; |
||
| 368 | |||
| 369 | /** |
||
| 370 | * The configuration pool. |
||
| 371 | * |
||
| 372 | * @var Pool |
||
| 373 | */ |
||
| 374 | protected $configurationPool; |
||
| 375 | |||
| 376 | /** |
||
| 377 | * @var ItemInterface |
||
| 378 | */ |
||
| 379 | protected $menu; |
||
| 380 | |||
| 381 | /** |
||
| 382 | * @var FactoryInterface |
||
| 383 | */ |
||
| 384 | protected $menuFactory; |
||
| 385 | |||
| 386 | /** |
||
| 387 | * @var array<string, bool> |
||
| 388 | */ |
||
| 389 | protected $loaded = [ |
||
| 390 | 'view_fields' => false, |
||
| 391 | 'view_groups' => false, |
||
| 392 | 'routes' => false, |
||
| 393 | 'tab_menu' => false, |
||
| 394 | ]; |
||
| 395 | |||
| 396 | /** |
||
| 397 | * @var string[] |
||
| 398 | */ |
||
| 399 | protected $formTheme = []; |
||
| 400 | |||
| 401 | /** |
||
| 402 | * @var string[] |
||
| 403 | */ |
||
| 404 | protected $filterTheme = []; |
||
| 405 | |||
| 406 | /** |
||
| 407 | * @var array<string, string> |
||
| 408 | * |
||
| 409 | * @deprecated since sonata-project/admin-bundle 3.34, will be dropped in 4.0. Use TemplateRegistry services instead |
||
| 410 | */ |
||
| 411 | protected $templates = []; |
||
| 412 | |||
| 413 | /** |
||
| 414 | * @var AdminExtensionInterface[] |
||
| 415 | */ |
||
| 416 | protected $extensions = []; |
||
| 417 | |||
| 418 | /** |
||
| 419 | * @var LabelTranslatorStrategyInterface |
||
| 420 | */ |
||
| 421 | protected $labelTranslatorStrategy; |
||
| 422 | |||
| 423 | /** |
||
| 424 | * Setting to true will enable preview mode for |
||
| 425 | * the entity and show a preview button in the |
||
| 426 | * edit/create forms. |
||
| 427 | * |
||
| 428 | * @var bool |
||
| 429 | */ |
||
| 430 | protected $supportsPreviewMode = false; |
||
| 431 | |||
| 432 | /** |
||
| 433 | * Roles and permissions per role. |
||
| 434 | * |
||
| 435 | * @var array 'role' => ['permission', 'permission'] |
||
| 436 | */ |
||
| 437 | protected $securityInformation = []; |
||
| 438 | |||
| 439 | protected $cacheIsGranted = []; |
||
| 440 | |||
| 441 | /** |
||
| 442 | * Action list for the search result. |
||
| 443 | * |
||
| 444 | * @var string[] |
||
| 445 | */ |
||
| 446 | protected $searchResultActions = ['edit', 'show']; |
||
| 447 | |||
| 448 | protected $listModes = [ |
||
| 449 | 'list' => [ |
||
| 450 | 'class' => 'fa fa-list fa-fw', |
||
| 451 | ], |
||
| 452 | 'mosaic' => [ |
||
| 453 | 'class' => self::MOSAIC_ICON_CLASS, |
||
| 454 | ], |
||
| 455 | ]; |
||
| 456 | |||
| 457 | /** |
||
| 458 | * The Access mapping. |
||
| 459 | * |
||
| 460 | * @var array [action1 => requiredRole1, action2 => [requiredRole2, requiredRole3]] |
||
| 461 | */ |
||
| 462 | protected $accessMapping = []; |
||
| 463 | |||
| 464 | /** |
||
| 465 | * @var MutableTemplateRegistryInterface |
||
| 466 | */ |
||
| 467 | private $templateRegistry; |
||
| 468 | |||
| 469 | /** |
||
| 470 | * The class name managed by the admin class. |
||
| 471 | * |
||
| 472 | * @var string |
||
| 473 | */ |
||
| 474 | private $class; |
||
| 475 | |||
| 476 | /** |
||
| 477 | * The subclasses supported by the admin class. |
||
| 478 | * |
||
| 479 | * @var array<string, string> |
||
| 480 | */ |
||
| 481 | private $subClasses = []; |
||
| 482 | |||
| 483 | /** |
||
| 484 | * The list collection. |
||
| 485 | * |
||
| 486 | * @var FieldDescriptionCollection |
||
| 487 | */ |
||
| 488 | private $list; |
||
| 489 | |||
| 490 | /** |
||
| 491 | * @var FieldDescriptionCollection|null |
||
| 492 | */ |
||
| 493 | private $show; |
||
| 494 | |||
| 495 | /** |
||
| 496 | * @var Form|null |
||
| 497 | */ |
||
| 498 | private $form; |
||
| 499 | |||
| 500 | /** |
||
| 501 | * The cached base route name. |
||
| 502 | * |
||
| 503 | * @var string |
||
| 504 | */ |
||
| 505 | private $cachedBaseRouteName; |
||
| 506 | |||
| 507 | /** |
||
| 508 | * The cached base route pattern. |
||
| 509 | * |
||
| 510 | * @var string |
||
| 511 | */ |
||
| 512 | private $cachedBaseRoutePattern; |
||
| 513 | |||
| 514 | /** |
||
| 515 | * The form group disposition. |
||
| 516 | * |
||
| 517 | * NEXT_MAJOR: must have `[]` as default value and remove the possibility to |
||
| 518 | * hold boolean values. |
||
| 519 | * |
||
| 520 | * @var array|bool |
||
| 521 | */ |
||
| 522 | private $formGroups = false; |
||
| 523 | |||
| 524 | /** |
||
| 525 | * The form tabs disposition. |
||
| 526 | * |
||
| 527 | * NEXT_MAJOR: must have `[]` as default value and remove the possibility to |
||
| 528 | * hold boolean values. |
||
| 529 | * |
||
| 530 | * @var array|bool |
||
| 531 | */ |
||
| 532 | private $formTabs = false; |
||
| 533 | |||
| 534 | /** |
||
| 535 | * The view group disposition. |
||
| 536 | * |
||
| 537 | * NEXT_MAJOR: must have `[]` as default value and remove the possibility to |
||
| 538 | * hold boolean values. |
||
| 539 | * |
||
| 540 | * @var array|bool |
||
| 541 | */ |
||
| 542 | private $showGroups = false; |
||
| 543 | |||
| 544 | /** |
||
| 545 | * The view tab disposition. |
||
| 546 | * |
||
| 547 | * NEXT_MAJOR: must have `[]` as default value and remove the possibility to |
||
| 548 | * hold boolean values. |
||
| 549 | * |
||
| 550 | * @var array|bool |
||
| 551 | */ |
||
| 552 | private $showTabs = false; |
||
| 553 | |||
| 554 | /** |
||
| 555 | * The manager type to use for the admin. |
||
| 556 | * |
||
| 557 | * @var string |
||
| 558 | */ |
||
| 559 | private $managerType; |
||
| 560 | |||
| 561 | /** |
||
| 562 | * The breadcrumbsBuilder component. |
||
| 563 | * |
||
| 564 | * @var BreadcrumbsBuilderInterface |
||
| 565 | */ |
||
| 566 | private $breadcrumbsBuilder; |
||
| 567 | |||
| 568 | /** |
||
| 569 | * Component responsible for persisting filters. |
||
| 570 | * |
||
| 571 | * @var FilterPersisterInterface|null |
||
| 572 | */ |
||
| 573 | private $filterPersister; |
||
| 574 | |||
| 575 | /** |
||
| 576 | * @param string $code |
||
| 577 | * @param string $class |
||
| 578 | * @param string|null $baseControllerName |
||
| 579 | */ |
||
| 580 | public function __construct($code, $class, $baseControllerName = null) |
||
| 581 | { |
||
| 582 | if (!\is_string($code)) { |
||
| 583 | @trigger_error(sprintf( |
||
|
|
|||
| 584 | 'Passing other type than string as argument 1 for method %s() is deprecated since sonata-project/admin-bundle 3.x. It will accept only string in version 4.0.', |
||
| 585 | __METHOD__ |
||
| 586 | ), E_USER_DEPRECATED); |
||
| 587 | } |
||
| 588 | $this->code = $code; |
||
| 589 | if (!\is_string($class)) { |
||
| 590 | @trigger_error(sprintf( |
||
| 591 | 'Passing other type than string as argument 2 for method %s() is deprecated since sonata-project/admin-bundle 3.x. It will accept only string in version 4.0.', |
||
| 592 | __METHOD__ |
||
| 593 | ), E_USER_DEPRECATED); |
||
| 594 | } |
||
| 595 | $this->class = $class; |
||
| 596 | if (null !== $baseControllerName && !\is_string($baseControllerName)) { |
||
| 597 | @trigger_error(sprintf( |
||
| 598 | 'Passing other type than string or null as argument 3 for method %s() is deprecated since sonata-project/admin-bundle 3.x. It will accept only string and null in version 4.0.', |
||
| 599 | __METHOD__ |
||
| 600 | ), E_USER_DEPRECATED); |
||
| 601 | } |
||
| 602 | $this->baseControllerName = $baseControllerName; |
||
| 603 | |||
| 604 | $this->predefinePerPageOptions(); |
||
| 605 | $this->datagridValues['_per_page'] = $this->maxPerPage; |
||
| 606 | } |
||
| 607 | |||
| 608 | /** |
||
| 609 | * {@inheritdoc} |
||
| 610 | */ |
||
| 611 | public function getExportFormats() |
||
| 612 | { |
||
| 613 | return [ |
||
| 614 | 'json', 'xml', 'csv', 'xls', |
||
| 615 | ]; |
||
| 616 | } |
||
| 617 | |||
| 618 | /** |
||
| 619 | * @return array |
||
| 620 | */ |
||
| 621 | public function getExportFields() |
||
| 622 | { |
||
| 623 | $fields = $this->getModelManager()->getExportFields($this->getClass()); |
||
| 624 | |||
| 625 | foreach ($this->getExtensions() as $extension) { |
||
| 626 | if (method_exists($extension, 'configureExportFields')) { |
||
| 627 | $fields = $extension->configureExportFields($this, $fields); |
||
| 628 | } |
||
| 629 | } |
||
| 630 | |||
| 631 | return $fields; |
||
| 632 | } |
||
| 633 | |||
| 634 | public function getDataSourceIterator() |
||
| 635 | { |
||
| 636 | $datagrid = $this->getDatagrid(); |
||
| 637 | $datagrid->buildPager(); |
||
| 638 | |||
| 639 | $fields = []; |
||
| 640 | |||
| 641 | foreach ($this->getExportFields() as $key => $field) { |
||
| 642 | $label = $this->getTranslationLabel($field, 'export', 'label'); |
||
| 643 | $transLabel = $this->trans($label); |
||
| 644 | |||
| 645 | // NEXT_MAJOR: Remove this hack, because all field labels will be translated with the major release |
||
| 646 | // No translation key exists |
||
| 647 | if ($transLabel === $label) { |
||
| 648 | $fields[$key] = $field; |
||
| 649 | } else { |
||
| 650 | $fields[$transLabel] = $field; |
||
| 651 | } |
||
| 652 | } |
||
| 653 | |||
| 654 | return $this->getModelManager()->getDataSourceIterator($datagrid, $fields); |
||
| 655 | } |
||
| 656 | |||
| 657 | public function validate(ErrorElement $errorElement, $object) |
||
| 658 | { |
||
| 659 | } |
||
| 660 | |||
| 661 | /** |
||
| 662 | * define custom variable. |
||
| 663 | */ |
||
| 664 | public function initialize() |
||
| 665 | { |
||
| 666 | if (!$this->classnameLabel) { |
||
| 667 | /* NEXT_MAJOR: remove cast to string, null is not supposed to be |
||
| 668 | supported but was documented as such */ |
||
| 669 | $this->classnameLabel = substr( |
||
| 670 | (string) $this->getClass(), |
||
| 671 | strrpos((string) $this->getClass(), '\\') + 1 |
||
| 672 | ); |
||
| 673 | } |
||
| 674 | |||
| 675 | // NEXT_MAJOR: Remove this line. |
||
| 676 | $this->baseCodeRoute = $this->getCode(); |
||
| 677 | |||
| 678 | $this->configure(); |
||
| 679 | } |
||
| 680 | |||
| 681 | public function configure() |
||
| 682 | { |
||
| 683 | } |
||
| 684 | |||
| 685 | public function update($object) |
||
| 686 | { |
||
| 687 | $this->preUpdate($object); |
||
| 688 | foreach ($this->extensions as $extension) { |
||
| 689 | $extension->preUpdate($this, $object); |
||
| 690 | } |
||
| 691 | |||
| 692 | $result = $this->getModelManager()->update($object); |
||
| 693 | // BC compatibility |
||
| 694 | if (null !== $result) { |
||
| 695 | $object = $result; |
||
| 696 | } |
||
| 697 | |||
| 698 | $this->postUpdate($object); |
||
| 699 | foreach ($this->extensions as $extension) { |
||
| 700 | $extension->postUpdate($this, $object); |
||
| 701 | } |
||
| 702 | |||
| 703 | return $object; |
||
| 704 | } |
||
| 705 | |||
| 706 | public function create($object) |
||
| 707 | { |
||
| 708 | $this->prePersist($object); |
||
| 709 | foreach ($this->extensions as $extension) { |
||
| 710 | $extension->prePersist($this, $object); |
||
| 711 | } |
||
| 712 | |||
| 713 | $result = $this->getModelManager()->create($object); |
||
| 714 | // BC compatibility |
||
| 715 | if (null !== $result) { |
||
| 716 | $object = $result; |
||
| 717 | } |
||
| 718 | |||
| 719 | $this->postPersist($object); |
||
| 720 | foreach ($this->extensions as $extension) { |
||
| 721 | $extension->postPersist($this, $object); |
||
| 722 | } |
||
| 723 | |||
| 724 | $this->createObjectSecurity($object); |
||
| 725 | |||
| 726 | return $object; |
||
| 727 | } |
||
| 728 | |||
| 729 | public function delete($object) |
||
| 730 | { |
||
| 731 | $this->preRemove($object); |
||
| 732 | foreach ($this->extensions as $extension) { |
||
| 733 | $extension->preRemove($this, $object); |
||
| 734 | } |
||
| 735 | |||
| 736 | $this->getSecurityHandler()->deleteObjectSecurity($this, $object); |
||
| 737 | $this->getModelManager()->delete($object); |
||
| 738 | |||
| 739 | $this->postRemove($object); |
||
| 740 | foreach ($this->extensions as $extension) { |
||
| 741 | $extension->postRemove($this, $object); |
||
| 742 | } |
||
| 743 | } |
||
| 744 | |||
| 745 | /** |
||
| 746 | * @param object $object |
||
| 747 | */ |
||
| 748 | public function preValidate($object) |
||
| 749 | { |
||
| 750 | } |
||
| 751 | |||
| 752 | public function preUpdate($object) |
||
| 753 | { |
||
| 754 | } |
||
| 755 | |||
| 756 | public function postUpdate($object) |
||
| 757 | { |
||
| 758 | } |
||
| 759 | |||
| 760 | public function prePersist($object) |
||
| 761 | { |
||
| 762 | } |
||
| 763 | |||
| 764 | public function postPersist($object) |
||
| 765 | { |
||
| 766 | } |
||
| 767 | |||
| 768 | public function preRemove($object) |
||
| 769 | { |
||
| 770 | } |
||
| 771 | |||
| 772 | public function postRemove($object) |
||
| 773 | { |
||
| 774 | } |
||
| 775 | |||
| 776 | public function preBatchAction($actionName, ProxyQueryInterface $query, array &$idx, $allElements) |
||
| 777 | { |
||
| 778 | } |
||
| 779 | |||
| 780 | public function getFilterParameters() |
||
| 781 | { |
||
| 782 | $parameters = []; |
||
| 783 | |||
| 784 | // build the values array |
||
| 785 | if ($this->hasRequest()) { |
||
| 786 | $filters = $this->request->query->get('filter', []); |
||
| 787 | if (isset($filters['_page'])) { |
||
| 788 | $filters['_page'] = (int) $filters['_page']; |
||
| 789 | } |
||
| 790 | if (isset($filters['_per_page'])) { |
||
| 791 | $filters['_per_page'] = (int) $filters['_per_page']; |
||
| 792 | } |
||
| 793 | |||
| 794 | // if filter persistence is configured |
||
| 795 | // NEXT_MAJOR: remove `$this->persistFilters !== false` from the condition |
||
| 796 | if (false !== $this->persistFilters && null !== $this->filterPersister) { |
||
| 797 | // if reset filters is asked, remove from storage |
||
| 798 | if ('reset' === $this->request->query->get('filters')) { |
||
| 799 | $this->filterPersister->reset($this->getCode()); |
||
| 800 | } |
||
| 801 | |||
| 802 | // if no filters, fetch from storage |
||
| 803 | // otherwise save to storage |
||
| 804 | if (empty($filters)) { |
||
| 805 | $filters = $this->filterPersister->get($this->getCode()); |
||
| 806 | } else { |
||
| 807 | $this->filterPersister->set($this->getCode(), $filters); |
||
| 808 | } |
||
| 809 | } |
||
| 810 | |||
| 811 | $parameters = array_merge( |
||
| 812 | $this->getModelManager()->getDefaultSortValues($this->getClass()), |
||
| 813 | $this->datagridValues, |
||
| 814 | $this->getDefaultFilterValues(), |
||
| 815 | $filters |
||
| 816 | ); |
||
| 817 | |||
| 818 | if (!$this->determinedPerPageValue($parameters['_per_page'])) { |
||
| 819 | $parameters['_per_page'] = $this->maxPerPage; |
||
| 820 | } |
||
| 821 | |||
| 822 | // always force the parent value |
||
| 823 | if ($this->isChild() && $this->getParentAssociationMapping()) { |
||
| 824 | $name = str_replace('.', '__', $this->getParentAssociationMapping()); |
||
| 825 | $parameters[$name] = ['value' => $this->request->get($this->getParent()->getIdParameter())]; |
||
| 826 | } |
||
| 827 | } |
||
| 828 | |||
| 829 | return $parameters; |
||
| 830 | } |
||
| 831 | |||
| 832 | public function buildDatagrid() |
||
| 833 | { |
||
| 834 | if ($this->datagrid) { |
||
| 835 | return; |
||
| 836 | } |
||
| 837 | |||
| 838 | $filterParameters = $this->getFilterParameters(); |
||
| 839 | |||
| 840 | // transform _sort_by from a string to a FieldDescriptionInterface for the datagrid. |
||
| 841 | if (isset($filterParameters['_sort_by']) && \is_string($filterParameters['_sort_by'])) { |
||
| 842 | if ($this->hasListFieldDescription($filterParameters['_sort_by'])) { |
||
| 843 | $filterParameters['_sort_by'] = $this->getListFieldDescription($filterParameters['_sort_by']); |
||
| 844 | } else { |
||
| 845 | $filterParameters['_sort_by'] = $this->getModelManager()->getNewFieldDescriptionInstance( |
||
| 846 | $this->getClass(), |
||
| 847 | $filterParameters['_sort_by'], |
||
| 848 | [] |
||
| 849 | ); |
||
| 850 | |||
| 851 | $this->getListBuilder()->buildField(null, $filterParameters['_sort_by'], $this); |
||
| 852 | } |
||
| 853 | } |
||
| 854 | |||
| 855 | // initialize the datagrid |
||
| 856 | $this->datagrid = $this->getDatagridBuilder()->getBaseDatagrid($this, $filterParameters); |
||
| 857 | |||
| 858 | $this->datagrid->getPager()->setMaxPageLinks($this->maxPageLinks); |
||
| 859 | |||
| 860 | $mapper = new DatagridMapper($this->getDatagridBuilder(), $this->datagrid, $this); |
||
| 861 | |||
| 862 | // build the datagrid filter |
||
| 863 | $this->configureDatagridFilters($mapper); |
||
| 864 | |||
| 865 | // ok, try to limit to add parent filter |
||
| 866 | if ($this->isChild() && $this->getParentAssociationMapping() && !$mapper->has($this->getParentAssociationMapping())) { |
||
| 867 | $mapper->add($this->getParentAssociationMapping(), null, [ |
||
| 868 | 'show_filter' => false, |
||
| 869 | 'label' => false, |
||
| 870 | 'field_type' => ModelHiddenType::class, |
||
| 871 | 'field_options' => [ |
||
| 872 | 'model_manager' => $this->getModelManager(), |
||
| 873 | ], |
||
| 874 | 'operator_type' => HiddenType::class, |
||
| 875 | ], null, null, [ |
||
| 876 | 'admin_code' => $this->getParent()->getCode(), |
||
| 877 | ]); |
||
| 878 | } |
||
| 879 | |||
| 880 | foreach ($this->getExtensions() as $extension) { |
||
| 881 | $extension->configureDatagridFilters($mapper); |
||
| 882 | } |
||
| 883 | } |
||
| 884 | |||
| 885 | /** |
||
| 886 | * Returns the name of the parent related field, so the field can be use to set the default |
||
| 887 | * value (ie the parent object) or to filter the object. |
||
| 888 | * |
||
| 889 | * @throws \InvalidArgumentException |
||
| 890 | * |
||
| 891 | * @return string|null |
||
| 892 | */ |
||
| 893 | public function getParentAssociationMapping() |
||
| 894 | { |
||
| 895 | // NEXT_MAJOR: remove array check |
||
| 896 | if (\is_array($this->parentAssociationMapping) && $this->getParent()) { |
||
| 897 | $parent = $this->getParent()->getCode(); |
||
| 898 | |||
| 899 | if (\array_key_exists($parent, $this->parentAssociationMapping)) { |
||
| 900 | return $this->parentAssociationMapping[$parent]; |
||
| 901 | } |
||
| 902 | |||
| 903 | throw new \InvalidArgumentException(sprintf( |
||
| 904 | "There's no association between %s and %s.", |
||
| 905 | $this->getCode(), |
||
| 906 | $this->getParent()->getCode() |
||
| 907 | )); |
||
| 908 | } |
||
| 909 | |||
| 910 | // NEXT_MAJOR: remove this line |
||
| 911 | return $this->parentAssociationMapping; |
||
| 912 | } |
||
| 913 | |||
| 914 | /** |
||
| 915 | * @param string $code |
||
| 916 | * @param string $value |
||
| 917 | */ |
||
| 918 | final public function addParentAssociationMapping($code, $value) |
||
| 919 | { |
||
| 920 | $this->parentAssociationMapping[$code] = $value; |
||
| 921 | } |
||
| 922 | |||
| 923 | /** |
||
| 924 | * Returns the baseRoutePattern used to generate the routing information. |
||
| 925 | * |
||
| 926 | * @throws \RuntimeException |
||
| 927 | * |
||
| 928 | * @return string the baseRoutePattern used to generate the routing information |
||
| 929 | */ |
||
| 930 | public function getBaseRoutePattern() |
||
| 931 | { |
||
| 932 | if (null !== $this->cachedBaseRoutePattern) { |
||
| 933 | return $this->cachedBaseRoutePattern; |
||
| 934 | } |
||
| 935 | |||
| 936 | if ($this->isChild()) { // the admin class is a child, prefix it with the parent route pattern |
||
| 937 | $baseRoutePattern = $this->baseRoutePattern; |
||
| 938 | if (!$this->baseRoutePattern) { |
||
| 939 | preg_match(self::CLASS_REGEX, $this->class, $matches); |
||
| 940 | |||
| 941 | if (!$matches) { |
||
| 942 | throw new \RuntimeException(sprintf('Please define a default `baseRoutePattern` value for the admin class `%s`', static::class)); |
||
| 943 | } |
||
| 944 | $baseRoutePattern = $this->urlize($matches[5], '-'); |
||
| 945 | } |
||
| 946 | |||
| 947 | $this->cachedBaseRoutePattern = sprintf( |
||
| 948 | '%s/%s/%s', |
||
| 949 | $this->getParent()->getBaseRoutePattern(), |
||
| 950 | $this->getParent()->getRouterIdParameter(), |
||
| 951 | $baseRoutePattern |
||
| 952 | ); |
||
| 953 | } elseif ($this->baseRoutePattern) { |
||
| 954 | $this->cachedBaseRoutePattern = $this->baseRoutePattern; |
||
| 955 | } else { |
||
| 956 | preg_match(self::CLASS_REGEX, $this->class, $matches); |
||
| 957 | |||
| 958 | if (!$matches) { |
||
| 959 | throw new \RuntimeException(sprintf('Please define a default `baseRoutePattern` value for the admin class `%s`', static::class)); |
||
| 960 | } |
||
| 961 | |||
| 962 | $this->cachedBaseRoutePattern = sprintf( |
||
| 963 | '/%s%s/%s', |
||
| 964 | empty($matches[1]) ? '' : $this->urlize($matches[1], '-').'/', |
||
| 965 | $this->urlize($matches[3], '-'), |
||
| 966 | $this->urlize($matches[5], '-') |
||
| 967 | ); |
||
| 968 | } |
||
| 969 | |||
| 970 | return $this->cachedBaseRoutePattern; |
||
| 971 | } |
||
| 972 | |||
| 973 | /** |
||
| 974 | * Returns the baseRouteName used to generate the routing information. |
||
| 975 | * |
||
| 976 | * @throws \RuntimeException |
||
| 977 | * |
||
| 978 | * @return string the baseRouteName used to generate the routing information |
||
| 979 | */ |
||
| 980 | public function getBaseRouteName() |
||
| 981 | { |
||
| 982 | if (null !== $this->cachedBaseRouteName) { |
||
| 983 | return $this->cachedBaseRouteName; |
||
| 984 | } |
||
| 985 | |||
| 986 | if ($this->isChild()) { // the admin class is a child, prefix it with the parent route name |
||
| 987 | $baseRouteName = $this->baseRouteName; |
||
| 988 | if (!$this->baseRouteName) { |
||
| 989 | preg_match(self::CLASS_REGEX, $this->class, $matches); |
||
| 990 | |||
| 991 | if (!$matches) { |
||
| 992 | throw new \RuntimeException(sprintf('Cannot automatically determine base route name, please define a default `baseRouteName` value for the admin class `%s`', static::class)); |
||
| 993 | } |
||
| 994 | $baseRouteName = $this->urlize($matches[5]); |
||
| 995 | } |
||
| 996 | |||
| 997 | $this->cachedBaseRouteName = sprintf( |
||
| 998 | '%s_%s', |
||
| 999 | $this->getParent()->getBaseRouteName(), |
||
| 1000 | $baseRouteName |
||
| 1001 | ); |
||
| 1002 | } elseif ($this->baseRouteName) { |
||
| 1003 | $this->cachedBaseRouteName = $this->baseRouteName; |
||
| 1004 | } else { |
||
| 1005 | preg_match(self::CLASS_REGEX, $this->class, $matches); |
||
| 1006 | |||
| 1007 | if (!$matches) { |
||
| 1008 | throw new \RuntimeException(sprintf('Cannot automatically determine base route name, please define a default `baseRouteName` value for the admin class `%s`', static::class)); |
||
| 1009 | } |
||
| 1010 | |||
| 1011 | $this->cachedBaseRouteName = sprintf( |
||
| 1012 | 'admin_%s%s_%s', |
||
| 1013 | empty($matches[1]) ? '' : $this->urlize($matches[1]).'_', |
||
| 1014 | $this->urlize($matches[3]), |
||
| 1015 | $this->urlize($matches[5]) |
||
| 1016 | ); |
||
| 1017 | } |
||
| 1018 | |||
| 1019 | return $this->cachedBaseRouteName; |
||
| 1020 | } |
||
| 1021 | |||
| 1022 | /** |
||
| 1023 | * urlize the given word. |
||
| 1024 | * |
||
| 1025 | * @param string $word |
||
| 1026 | * @param string $sep the separator |
||
| 1027 | * |
||
| 1028 | * @return string |
||
| 1029 | */ |
||
| 1030 | public function urlize($word, $sep = '_') |
||
| 1031 | { |
||
| 1032 | return strtolower(preg_replace('/[^a-z0-9_]/i', $sep.'$1', $word)); |
||
| 1033 | } |
||
| 1034 | |||
| 1035 | public function getClass() |
||
| 1036 | { |
||
| 1037 | if ($this->hasActiveSubClass()) { |
||
| 1038 | if ($this->getParentFieldDescription()) { |
||
| 1039 | throw new \RuntimeException('Feature not implemented: an embedded admin cannot have subclass'); |
||
| 1040 | } |
||
| 1041 | |||
| 1042 | $subClass = $this->getRequest()->query->get('subclass'); |
||
| 1043 | |||
| 1044 | if (!$this->hasSubClass($subClass)) { |
||
| 1045 | throw new \RuntimeException(sprintf('Subclass "%s" is not defined.', $subClass)); |
||
| 1046 | } |
||
| 1047 | |||
| 1048 | return $this->getSubClass($subClass); |
||
| 1049 | } |
||
| 1050 | |||
| 1051 | // see https://github.com/sonata-project/SonataCoreBundle/commit/247eeb0a7ca7211142e101754769d70bc402a5b4 |
||
| 1052 | if ($this->subject && \is_object($this->subject)) { |
||
| 1053 | return ClassUtils::getClass($this->subject); |
||
| 1054 | } |
||
| 1055 | |||
| 1056 | return $this->class; |
||
| 1057 | } |
||
| 1058 | |||
| 1059 | public function getSubClasses() |
||
| 1060 | { |
||
| 1061 | return $this->subClasses; |
||
| 1062 | } |
||
| 1063 | |||
| 1064 | /** |
||
| 1065 | * NEXT_MAJOR: remove this method. |
||
| 1066 | */ |
||
| 1067 | public function addSubClass($subClass) |
||
| 1068 | { |
||
| 1069 | @trigger_error(sprintf( |
||
| 1070 | 'Method "%s" is deprecated since sonata-project/admin-bundle 3.30 and will be removed in 4.0.', |
||
| 1071 | __METHOD__ |
||
| 1072 | ), E_USER_DEPRECATED); |
||
| 1073 | |||
| 1074 | if (!\in_array($subClass, $this->subClasses, true)) { |
||
| 1075 | $this->subClasses[] = $subClass; |
||
| 1076 | } |
||
| 1077 | } |
||
| 1078 | |||
| 1079 | public function setSubClasses(array $subClasses) |
||
| 1080 | { |
||
| 1081 | $this->subClasses = $subClasses; |
||
| 1082 | } |
||
| 1083 | |||
| 1084 | public function hasSubClass($name) |
||
| 1085 | { |
||
| 1086 | return isset($this->subClasses[$name]); |
||
| 1087 | } |
||
| 1088 | |||
| 1089 | public function hasActiveSubClass() |
||
| 1090 | { |
||
| 1091 | if (\count($this->subClasses) > 0 && $this->request) { |
||
| 1092 | return null !== $this->getRequest()->query->get('subclass'); |
||
| 1093 | } |
||
| 1094 | |||
| 1095 | return false; |
||
| 1096 | } |
||
| 1097 | |||
| 1098 | public function getActiveSubClass() |
||
| 1099 | { |
||
| 1100 | if (!$this->hasActiveSubClass()) { |
||
| 1101 | @trigger_error(sprintf( |
||
| 1102 | '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. '. |
||
| 1103 | 'Use %s::hasActiveSubClass() to know if there is an active subclass.', |
||
| 1104 | __METHOD__, |
||
| 1105 | __CLASS__ |
||
| 1106 | ), E_USER_DEPRECATED); |
||
| 1107 | // NEXT_MAJOR : remove the previous `trigger_error()` call, the `return null` statement, uncomment the following exception and declare string as return type |
||
| 1108 | // throw new \LogicException(sprintf( |
||
| 1109 | // 'Admin "%s" has no active subclass.', |
||
| 1110 | // static::class |
||
| 1111 | // )); |
||
| 1112 | |||
| 1113 | return null; |
||
| 1114 | } |
||
| 1115 | |||
| 1116 | return $this->getSubClass($this->getActiveSubclassCode()); |
||
| 1117 | } |
||
| 1118 | |||
| 1119 | public function getActiveSubclassCode() |
||
| 1120 | { |
||
| 1121 | if (!$this->hasActiveSubClass()) { |
||
| 1122 | @trigger_error(sprintf( |
||
| 1123 | '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. '. |
||
| 1124 | 'Use %s::hasActiveSubClass() to know if there is an active subclass.', |
||
| 1125 | __METHOD__, |
||
| 1126 | __CLASS__ |
||
| 1127 | ), E_USER_DEPRECATED); |
||
| 1128 | // NEXT_MAJOR : remove the previous `trigger_error()` call, the `return null` statement, uncomment the following exception and declare string as return type |
||
| 1129 | // throw new \LogicException(sprintf( |
||
| 1130 | // 'Admin "%s" has no active subclass.', |
||
| 1131 | // static::class |
||
| 1132 | // )); |
||
| 1133 | |||
| 1134 | return null; |
||
| 1135 | } |
||
| 1136 | |||
| 1137 | $subClass = $this->getRequest()->query->get('subclass'); |
||
| 1138 | |||
| 1139 | if (!$this->hasSubClass($subClass)) { |
||
| 1140 | @trigger_error(sprintf( |
||
| 1141 | '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. '. |
||
| 1142 | 'Use %s::hasActiveSubClass() to know if there is an active subclass.', |
||
| 1143 | __METHOD__, |
||
| 1144 | __CLASS__ |
||
| 1145 | ), E_USER_DEPRECATED); |
||
| 1146 | // NEXT_MAJOR : remove the previous `trigger_error()` call, the `return null` statement, uncomment the following exception and declare string as return type |
||
| 1147 | // throw new \LogicException(sprintf( |
||
| 1148 | // 'Admin "%s" has no active subclass.', |
||
| 1149 | // static::class |
||
| 1150 | // )); |
||
| 1151 | |||
| 1152 | return null; |
||
| 1153 | } |
||
| 1154 | |||
| 1155 | return $subClass; |
||
| 1156 | } |
||
| 1157 | |||
| 1158 | public function getBatchActions() |
||
| 1159 | { |
||
| 1160 | $actions = []; |
||
| 1161 | |||
| 1162 | if ($this->hasRoute('delete') && $this->hasAccess('delete')) { |
||
| 1163 | $actions['delete'] = [ |
||
| 1164 | 'label' => 'action_delete', |
||
| 1165 | 'translation_domain' => 'SonataAdminBundle', |
||
| 1166 | 'ask_confirmation' => true, // by default always true |
||
| 1167 | ]; |
||
| 1168 | } |
||
| 1169 | |||
| 1170 | $actions = $this->configureBatchActions($actions); |
||
| 1171 | |||
| 1172 | foreach ($this->getExtensions() as $extension) { |
||
| 1173 | // NEXT_MAJOR: remove method check |
||
| 1174 | if (method_exists($extension, 'configureBatchActions')) { |
||
| 1175 | $actions = $extension->configureBatchActions($this, $actions); |
||
| 1176 | } |
||
| 1177 | } |
||
| 1178 | |||
| 1179 | foreach ($actions as $name => &$action) { |
||
| 1180 | if (!\array_key_exists('label', $action)) { |
||
| 1181 | $action['label'] = $this->getTranslationLabel($name, 'batch', 'label'); |
||
| 1182 | } |
||
| 1183 | |||
| 1184 | if (!\array_key_exists('translation_domain', $action)) { |
||
| 1185 | $action['translation_domain'] = $this->getTranslationDomain(); |
||
| 1186 | } |
||
| 1187 | } |
||
| 1188 | |||
| 1189 | return $actions; |
||
| 1190 | } |
||
| 1191 | |||
| 1192 | public function getRoutes() |
||
| 1193 | { |
||
| 1194 | $this->buildRoutes(); |
||
| 1195 | |||
| 1196 | return $this->routes; |
||
| 1197 | } |
||
| 1198 | |||
| 1199 | public function getRouterIdParameter() |
||
| 1200 | { |
||
| 1201 | return '{'.$this->getIdParameter().'}'; |
||
| 1202 | } |
||
| 1203 | |||
| 1204 | public function getIdParameter() |
||
| 1205 | { |
||
| 1206 | $parameter = 'id'; |
||
| 1207 | |||
| 1208 | for ($i = 0; $i < $this->getChildDepth(); ++$i) { |
||
| 1209 | $parameter = 'child'.ucfirst($parameter); |
||
| 1210 | } |
||
| 1211 | |||
| 1212 | return $parameter; |
||
| 1213 | } |
||
| 1214 | |||
| 1215 | public function hasRoute($name) |
||
| 1216 | { |
||
| 1217 | if (!$this->routeGenerator) { |
||
| 1218 | throw new \RuntimeException('RouteGenerator cannot be null'); |
||
| 1219 | } |
||
| 1220 | |||
| 1221 | return $this->routeGenerator->hasAdminRoute($this, $name); |
||
| 1222 | } |
||
| 1223 | |||
| 1224 | /** |
||
| 1225 | * @param string $name |
||
| 1226 | * @param string|null $adminCode |
||
| 1227 | * |
||
| 1228 | * @return bool |
||
| 1229 | */ |
||
| 1230 | public function isCurrentRoute($name, $adminCode = null) |
||
| 1231 | { |
||
| 1232 | if (!$this->hasRequest()) { |
||
| 1233 | return false; |
||
| 1234 | } |
||
| 1235 | |||
| 1236 | $request = $this->getRequest(); |
||
| 1237 | $route = $request->get('_route'); |
||
| 1238 | |||
| 1239 | if ($adminCode) { |
||
| 1240 | $admin = $this->getConfigurationPool()->getAdminByAdminCode($adminCode); |
||
| 1241 | } else { |
||
| 1242 | $admin = $this; |
||
| 1243 | } |
||
| 1244 | |||
| 1245 | if (!$admin) { |
||
| 1246 | return false; |
||
| 1247 | } |
||
| 1248 | |||
| 1249 | return ($admin->getBaseRouteName().'_'.$name) === $route; |
||
| 1250 | } |
||
| 1251 | |||
| 1252 | public function generateObjectUrl($name, $object, array $parameters = [], $referenceType = RoutingUrlGeneratorInterface::ABSOLUTE_PATH) |
||
| 1253 | { |
||
| 1254 | $parameters['id'] = $this->getUrlSafeIdentifier($object); |
||
| 1255 | |||
| 1256 | return $this->generateUrl($name, $parameters, $referenceType); |
||
| 1257 | } |
||
| 1258 | |||
| 1259 | public function generateUrl($name, array $parameters = [], $referenceType = RoutingUrlGeneratorInterface::ABSOLUTE_PATH) |
||
| 1260 | { |
||
| 1261 | return $this->routeGenerator->generateUrl($this, $name, $parameters, $referenceType); |
||
| 1262 | } |
||
| 1263 | |||
| 1264 | public function generateMenuUrl($name, array $parameters = [], $referenceType = RoutingUrlGeneratorInterface::ABSOLUTE_PATH) |
||
| 1265 | { |
||
| 1266 | return $this->routeGenerator->generateMenuUrl($this, $name, $parameters, $referenceType); |
||
| 1267 | } |
||
| 1268 | |||
| 1269 | final public function setTemplateRegistry(MutableTemplateRegistryInterface $templateRegistry) |
||
| 1270 | { |
||
| 1271 | $this->templateRegistry = $templateRegistry; |
||
| 1272 | } |
||
| 1273 | |||
| 1274 | /** |
||
| 1275 | * @param array<string, string> $templates |
||
| 1276 | */ |
||
| 1277 | public function setTemplates(array $templates) |
||
| 1278 | { |
||
| 1279 | // NEXT_MAJOR: Remove this line |
||
| 1280 | $this->templates = $templates; |
||
| 1281 | |||
| 1282 | $this->getTemplateRegistry()->setTemplates($templates); |
||
| 1283 | } |
||
| 1284 | |||
| 1285 | /** |
||
| 1286 | * @param string $name |
||
| 1287 | * @param string $template |
||
| 1288 | */ |
||
| 1289 | public function setTemplate($name, $template) |
||
| 1290 | { |
||
| 1291 | // NEXT_MAJOR: Remove this line |
||
| 1292 | $this->templates[$name] = $template; |
||
| 1293 | |||
| 1294 | $this->getTemplateRegistry()->setTemplate($name, $template); |
||
| 1295 | } |
||
| 1296 | |||
| 1297 | /** |
||
| 1298 | * @deprecated since sonata-project/admin-bundle 3.34, will be dropped in 4.0. Use TemplateRegistry services instead |
||
| 1299 | * |
||
| 1300 | * @return array<string, string> |
||
| 1301 | */ |
||
| 1302 | public function getTemplates() |
||
| 1303 | { |
||
| 1304 | return $this->getTemplateRegistry()->getTemplates(); |
||
| 1305 | } |
||
| 1306 | |||
| 1307 | /** |
||
| 1308 | * @deprecated since sonata-project/admin-bundle 3.34, will be dropped in 4.0. Use TemplateRegistry services instead |
||
| 1309 | * |
||
| 1310 | * @param string $name |
||
| 1311 | * |
||
| 1312 | * @return string|null |
||
| 1313 | */ |
||
| 1314 | public function getTemplate($name) |
||
| 1315 | { |
||
| 1316 | return $this->getTemplateRegistry()->getTemplate($name); |
||
| 1317 | } |
||
| 1318 | |||
| 1319 | public function getNewInstance() |
||
| 1320 | { |
||
| 1321 | $object = $this->getModelManager()->getModelInstance($this->getClass()); |
||
| 1322 | foreach ($this->getExtensions() as $extension) { |
||
| 1323 | $extension->alterNewInstance($this, $object); |
||
| 1324 | } |
||
| 1325 | |||
| 1326 | return $object; |
||
| 1327 | } |
||
| 1328 | |||
| 1329 | public function getFormBuilder() |
||
| 1330 | { |
||
| 1331 | $this->formOptions['data_class'] = $this->getClass(); |
||
| 1332 | |||
| 1333 | $formBuilder = $this->getFormContractor()->getFormBuilder( |
||
| 1334 | $this->getUniqid(), |
||
| 1335 | $this->formOptions |
||
| 1336 | ); |
||
| 1337 | |||
| 1338 | $this->defineFormBuilder($formBuilder); |
||
| 1339 | |||
| 1340 | return $formBuilder; |
||
| 1341 | } |
||
| 1342 | |||
| 1343 | /** |
||
| 1344 | * This method is being called by the main admin class and the child class, |
||
| 1345 | * the getFormBuilder is only call by the main admin class. |
||
| 1346 | */ |
||
| 1347 | public function defineFormBuilder(FormBuilderInterface $formBuilder) |
||
| 1348 | { |
||
| 1349 | $mapper = new FormMapper($this->getFormContractor(), $formBuilder, $this); |
||
| 1350 | |||
| 1351 | $this->configureFormFields($mapper); |
||
| 1352 | |||
| 1353 | foreach ($this->getExtensions() as $extension) { |
||
| 1354 | $extension->configureFormFields($mapper); |
||
| 1355 | } |
||
| 1356 | |||
| 1357 | $this->attachInlineValidator(); |
||
| 1358 | } |
||
| 1359 | |||
| 1360 | public function attachAdminClass(FieldDescriptionInterface $fieldDescription) |
||
| 1361 | { |
||
| 1362 | $pool = $this->getConfigurationPool(); |
||
| 1363 | |||
| 1364 | $adminCode = $fieldDescription->getOption('admin_code'); |
||
| 1365 | |||
| 1366 | if (null !== $adminCode) { |
||
| 1367 | $admin = $pool->getAdminByAdminCode($adminCode); |
||
| 1368 | } else { |
||
| 1369 | $admin = $pool->getAdminByClass($fieldDescription->getTargetEntity()); |
||
| 1370 | } |
||
| 1371 | |||
| 1372 | if (!$admin) { |
||
| 1373 | return; |
||
| 1374 | } |
||
| 1375 | |||
| 1376 | if ($this->hasRequest()) { |
||
| 1377 | $admin->setRequest($this->getRequest()); |
||
| 1378 | } |
||
| 1379 | |||
| 1380 | $fieldDescription->setAssociationAdmin($admin); |
||
| 1381 | } |
||
| 1382 | |||
| 1383 | public function getObject($id) |
||
| 1384 | { |
||
| 1385 | $object = $this->getModelManager()->find($this->getClass(), $id); |
||
| 1386 | foreach ($this->getExtensions() as $extension) { |
||
| 1387 | $extension->alterObject($this, $object); |
||
| 1388 | } |
||
| 1389 | |||
| 1390 | return $object; |
||
| 1391 | } |
||
| 1392 | |||
| 1393 | public function getForm() |
||
| 1394 | { |
||
| 1395 | $this->buildForm(); |
||
| 1396 | |||
| 1397 | return $this->form; |
||
| 1398 | } |
||
| 1399 | |||
| 1400 | public function getList() |
||
| 1401 | { |
||
| 1402 | $this->buildList(); |
||
| 1403 | |||
| 1404 | return $this->list; |
||
| 1405 | } |
||
| 1406 | |||
| 1407 | /** |
||
| 1408 | * @final since sonata-project/admin-bundle 3.63.0 |
||
| 1409 | */ |
||
| 1410 | public function createQuery($context = 'list') |
||
| 1411 | { |
||
| 1412 | if (\func_num_args() > 0) { |
||
| 1413 | @trigger_error( |
||
| 1414 | 'The $context argument of '.__METHOD__.' is deprecated since 3.3, to be removed in 4.0.', |
||
| 1415 | E_USER_DEPRECATED |
||
| 1416 | ); |
||
| 1417 | } |
||
| 1418 | |||
| 1419 | $query = $this->getModelManager()->createQuery($this->getClass()); |
||
| 1420 | |||
| 1421 | $query = $this->configureQuery($query); |
||
| 1422 | foreach ($this->extensions as $extension) { |
||
| 1423 | $extension->configureQuery($this, $query, $context); |
||
| 1424 | } |
||
| 1425 | |||
| 1426 | return $query; |
||
| 1427 | } |
||
| 1428 | |||
| 1429 | public function getDatagrid() |
||
| 1430 | { |
||
| 1431 | $this->buildDatagrid(); |
||
| 1432 | |||
| 1433 | return $this->datagrid; |
||
| 1434 | } |
||
| 1435 | |||
| 1436 | public function buildTabMenu($action, ?AdminInterface $childAdmin = null) |
||
| 1437 | { |
||
| 1438 | if ($this->loaded['tab_menu']) { |
||
| 1439 | return $this->menu; |
||
| 1440 | } |
||
| 1441 | |||
| 1442 | $this->loaded['tab_menu'] = true; |
||
| 1443 | |||
| 1444 | $menu = $this->menuFactory->createItem('root'); |
||
| 1445 | $menu->setChildrenAttribute('class', 'nav navbar-nav'); |
||
| 1446 | $menu->setExtra('translation_domain', $this->translationDomain); |
||
| 1447 | |||
| 1448 | // Prevents BC break with KnpMenuBundle v1.x |
||
| 1449 | if (method_exists($menu, 'setCurrentUri')) { |
||
| 1450 | $menu->setCurrentUri($this->getRequest()->getBaseUrl().$this->getRequest()->getPathInfo()); |
||
| 1451 | } |
||
| 1452 | |||
| 1453 | $this->configureTabMenu($menu, $action, $childAdmin); |
||
| 1454 | |||
| 1455 | foreach ($this->getExtensions() as $extension) { |
||
| 1456 | $extension->configureTabMenu($this, $menu, $action, $childAdmin); |
||
| 1457 | } |
||
| 1458 | |||
| 1459 | $this->menu = $menu; |
||
| 1460 | |||
| 1461 | return $this->menu; |
||
| 1462 | } |
||
| 1463 | |||
| 1464 | public function buildSideMenu($action, ?AdminInterface $childAdmin = null) |
||
| 1465 | { |
||
| 1466 | return $this->buildTabMenu($action, $childAdmin); |
||
| 1467 | } |
||
| 1468 | |||
| 1469 | /** |
||
| 1470 | * @param string $action |
||
| 1471 | * |
||
| 1472 | * @return ItemInterface |
||
| 1473 | */ |
||
| 1474 | public function getSideMenu($action, ?AdminInterface $childAdmin = null) |
||
| 1475 | { |
||
| 1476 | if ($this->isChild()) { |
||
| 1477 | return $this->getParent()->getSideMenu($action, $this); |
||
| 1478 | } |
||
| 1479 | |||
| 1480 | $this->buildSideMenu($action, $childAdmin); |
||
| 1481 | |||
| 1482 | return $this->menu; |
||
| 1483 | } |
||
| 1484 | |||
| 1485 | /** |
||
| 1486 | * Returns the root code. |
||
| 1487 | * |
||
| 1488 | * @return string the root code |
||
| 1489 | */ |
||
| 1490 | public function getRootCode() |
||
| 1491 | { |
||
| 1492 | return $this->getRoot()->getCode(); |
||
| 1493 | } |
||
| 1494 | |||
| 1495 | /** |
||
| 1496 | * Returns the master admin. |
||
| 1497 | * |
||
| 1498 | * @return AbstractAdmin the root admin class |
||
| 1499 | */ |
||
| 1500 | public function getRoot() |
||
| 1501 | { |
||
| 1502 | $parentFieldDescription = $this->getParentFieldDescription(); |
||
| 1503 | |||
| 1504 | if (!$parentFieldDescription) { |
||
| 1505 | return $this; |
||
| 1506 | } |
||
| 1507 | |||
| 1508 | return $parentFieldDescription->getAdmin()->getRoot(); |
||
| 1509 | } |
||
| 1510 | |||
| 1511 | public function setBaseControllerName($baseControllerName) |
||
| 1512 | { |
||
| 1513 | $this->baseControllerName = $baseControllerName; |
||
| 1514 | } |
||
| 1515 | |||
| 1516 | public function getBaseControllerName() |
||
| 1517 | { |
||
| 1518 | return $this->baseControllerName; |
||
| 1519 | } |
||
| 1520 | |||
| 1521 | /** |
||
| 1522 | * @param string $label |
||
| 1523 | */ |
||
| 1524 | public function setLabel($label) |
||
| 1525 | { |
||
| 1526 | $this->label = $label; |
||
| 1527 | } |
||
| 1528 | |||
| 1529 | public function getLabel() |
||
| 1530 | { |
||
| 1531 | return $this->label; |
||
| 1532 | } |
||
| 1533 | |||
| 1534 | /** |
||
| 1535 | * @param bool $persist |
||
| 1536 | * |
||
| 1537 | * NEXT_MAJOR: remove this method |
||
| 1538 | * |
||
| 1539 | * @deprecated since sonata-project/admin-bundle 3.34, to be removed in 4.0. |
||
| 1540 | */ |
||
| 1541 | public function setPersistFilters($persist) |
||
| 1542 | { |
||
| 1543 | @trigger_error( |
||
| 1544 | 'The '.__METHOD__.' method is deprecated since version 3.34 and will be removed in 4.0.', |
||
| 1545 | E_USER_DEPRECATED |
||
| 1546 | ); |
||
| 1547 | |||
| 1548 | $this->persistFilters = $persist; |
||
| 1549 | } |
||
| 1550 | |||
| 1551 | public function setFilterPersister(?FilterPersisterInterface $filterPersister = null) |
||
| 1552 | { |
||
| 1553 | $this->filterPersister = $filterPersister; |
||
| 1554 | // NEXT_MAJOR remove the deprecated property will be removed. Needed for persisted filter condition. |
||
| 1555 | $this->persistFilters = true; |
||
| 1556 | } |
||
| 1557 | |||
| 1558 | /** |
||
| 1559 | * @param int $maxPerPage |
||
| 1560 | */ |
||
| 1561 | public function setMaxPerPage($maxPerPage) |
||
| 1562 | { |
||
| 1563 | $this->maxPerPage = $maxPerPage; |
||
| 1564 | } |
||
| 1565 | |||
| 1566 | /** |
||
| 1567 | * @return int |
||
| 1568 | */ |
||
| 1569 | public function getMaxPerPage() |
||
| 1570 | { |
||
| 1571 | return $this->maxPerPage; |
||
| 1572 | } |
||
| 1573 | |||
| 1574 | /** |
||
| 1575 | * @param int $maxPageLinks |
||
| 1576 | */ |
||
| 1577 | public function setMaxPageLinks($maxPageLinks) |
||
| 1578 | { |
||
| 1579 | $this->maxPageLinks = $maxPageLinks; |
||
| 1580 | } |
||
| 1581 | |||
| 1582 | /** |
||
| 1583 | * @return int |
||
| 1584 | */ |
||
| 1585 | public function getMaxPageLinks() |
||
| 1586 | { |
||
| 1587 | return $this->maxPageLinks; |
||
| 1588 | } |
||
| 1589 | |||
| 1590 | public function getFormGroups() |
||
| 1591 | { |
||
| 1592 | if (!\is_array($this->formGroups) && 'sonata_deprecation_mute' !== (\func_get_args()[0] ?? null)) { |
||
| 1593 | @trigger_error(sprintf( |
||
| 1594 | 'Returning other type than array in method %s() is deprecated since sonata-project/admin-bundle 3.x. It will return only array in version 4.0.', |
||
| 1595 | __METHOD__ |
||
| 1596 | ), E_USER_DEPRECATED); |
||
| 1597 | } |
||
| 1598 | |||
| 1599 | return $this->formGroups; |
||
| 1600 | } |
||
| 1601 | |||
| 1602 | public function setFormGroups(array $formGroups) |
||
| 1603 | { |
||
| 1604 | $this->formGroups = $formGroups; |
||
| 1605 | } |
||
| 1606 | |||
| 1607 | public function removeFieldFromFormGroup($key) |
||
| 1608 | { |
||
| 1609 | foreach ($this->formGroups as $name => $formGroup) { |
||
| 1610 | unset($this->formGroups[$name]['fields'][$key]); |
||
| 1611 | |||
| 1612 | if (empty($this->formGroups[$name]['fields'])) { |
||
| 1613 | unset($this->formGroups[$name]); |
||
| 1614 | } |
||
| 1615 | } |
||
| 1616 | } |
||
| 1617 | |||
| 1618 | /** |
||
| 1619 | * @param string $group |
||
| 1620 | */ |
||
| 1621 | public function reorderFormGroup($group, array $keys) |
||
| 1622 | { |
||
| 1623 | // NEXT_MAJOR: Remove the argument "sonata_deprecation_mute" in the following call. |
||
| 1624 | $formGroups = $this->getFormGroups('sonata_deprecation_mute'); |
||
| 1625 | $formGroups[$group]['fields'] = array_merge(array_flip($keys), $formGroups[$group]['fields']); |
||
| 1626 | $this->setFormGroups($formGroups); |
||
| 1627 | } |
||
| 1628 | |||
| 1629 | public function getFormTabs() |
||
| 1630 | { |
||
| 1631 | if (!\is_array($this->formTabs) && 'sonata_deprecation_mute' !== (\func_get_args()[0] ?? null)) { |
||
| 1632 | @trigger_error(sprintf( |
||
| 1633 | 'Returning other type than array in method %s() is deprecated since sonata-project/admin-bundle 3.x. It will return only array in version 4.0.', |
||
| 1634 | __METHOD__ |
||
| 1635 | ), E_USER_DEPRECATED); |
||
| 1636 | } |
||
| 1637 | |||
| 1638 | return $this->formTabs; |
||
| 1639 | } |
||
| 1640 | |||
| 1641 | public function setFormTabs(array $formTabs) |
||
| 1642 | { |
||
| 1643 | $this->formTabs = $formTabs; |
||
| 1644 | } |
||
| 1645 | |||
| 1646 | public function getShowTabs() |
||
| 1647 | { |
||
| 1648 | if (!\is_array($this->showTabs) && 'sonata_deprecation_mute' !== (\func_get_args()[0] ?? null)) { |
||
| 1649 | @trigger_error(sprintf( |
||
| 1650 | 'Returning other type than array in method %s() is deprecated since sonata-project/admin-bundle 3.x. It will return only array in version 4.0.', |
||
| 1651 | __METHOD__ |
||
| 1652 | ), E_USER_DEPRECATED); |
||
| 1653 | } |
||
| 1654 | |||
| 1655 | return $this->showTabs; |
||
| 1656 | } |
||
| 1657 | |||
| 1658 | public function setShowTabs(array $showTabs) |
||
| 1659 | { |
||
| 1660 | $this->showTabs = $showTabs; |
||
| 1661 | } |
||
| 1662 | |||
| 1663 | public function getShowGroups() |
||
| 1664 | { |
||
| 1665 | if (!\is_array($this->showGroups) && 'sonata_deprecation_mute' !== (\func_get_args()[0] ?? null)) { |
||
| 1666 | @trigger_error(sprintf( |
||
| 1667 | 'Returning other type than array in method %s() is deprecated since sonata-project/admin-bundle 3.x. It will return only array in version 4.0.', |
||
| 1668 | __METHOD__ |
||
| 1669 | ), E_USER_DEPRECATED); |
||
| 1670 | } |
||
| 1671 | |||
| 1672 | return $this->showGroups; |
||
| 1673 | } |
||
| 1674 | |||
| 1675 | public function setShowGroups(array $showGroups) |
||
| 1676 | { |
||
| 1677 | $this->showGroups = $showGroups; |
||
| 1678 | } |
||
| 1679 | |||
| 1680 | public function reorderShowGroup($group, array $keys) |
||
| 1681 | { |
||
| 1682 | // NEXT_MAJOR: Remove the argument "sonata_deprecation_mute" in the following call. |
||
| 1683 | $showGroups = $this->getShowGroups('sonata_deprecation_mute'); |
||
| 1684 | $showGroups[$group]['fields'] = array_merge(array_flip($keys), $showGroups[$group]['fields']); |
||
| 1685 | $this->setShowGroups($showGroups); |
||
| 1686 | } |
||
| 1687 | |||
| 1688 | public function setParentFieldDescription(FieldDescriptionInterface $parentFieldDescription) |
||
| 1689 | { |
||
| 1690 | $this->parentFieldDescription = $parentFieldDescription; |
||
| 1691 | } |
||
| 1692 | |||
| 1693 | public function getParentFieldDescription() |
||
| 1694 | { |
||
| 1695 | return $this->parentFieldDescription; |
||
| 1696 | } |
||
| 1697 | |||
| 1698 | public function hasParentFieldDescription() |
||
| 1699 | { |
||
| 1700 | return $this->parentFieldDescription instanceof FieldDescriptionInterface; |
||
| 1701 | } |
||
| 1702 | |||
| 1703 | public function setSubject($subject) |
||
| 1704 | { |
||
| 1705 | if (\is_object($subject) && !is_a($subject, $this->getClass(), true)) { |
||
| 1706 | $message = <<<'EOT' |
||
| 1707 | You are trying to set entity an instance of "%s", |
||
| 1708 | which is not the one registered with this admin class ("%s"). |
||
| 1709 | This is deprecated since 3.5 and will no longer be supported in 4.0. |
||
| 1710 | EOT; |
||
| 1711 | |||
| 1712 | @trigger_error( |
||
| 1713 | sprintf($message, \get_class($subject), $this->getClass()), |
||
| 1714 | E_USER_DEPRECATED |
||
| 1715 | ); // NEXT_MAJOR : throw an exception instead |
||
| 1716 | } |
||
| 1717 | |||
| 1718 | $this->subject = $subject; |
||
| 1719 | } |
||
| 1720 | |||
| 1721 | public function getSubject() |
||
| 1722 | { |
||
| 1723 | if (null === $this->subject && $this->request && !$this->hasParentFieldDescription()) { |
||
| 1724 | $id = $this->request->get($this->getIdParameter()); |
||
| 1725 | |||
| 1726 | if (null !== $id) { |
||
| 1727 | $this->subject = $this->getObject($id); |
||
| 1728 | } |
||
| 1729 | } |
||
| 1730 | |||
| 1731 | return $this->subject; |
||
| 1732 | } |
||
| 1733 | |||
| 1734 | public function hasSubject() |
||
| 1735 | { |
||
| 1736 | return (bool) $this->getSubject(); |
||
| 1737 | } |
||
| 1738 | |||
| 1739 | public function getFormFieldDescriptions() |
||
| 1740 | { |
||
| 1741 | $this->buildForm(); |
||
| 1742 | |||
| 1743 | return $this->formFieldDescriptions; |
||
| 1744 | } |
||
| 1745 | |||
| 1746 | public function getFormFieldDescription($name) |
||
| 1747 | { |
||
| 1748 | return $this->hasFormFieldDescription($name) ? $this->formFieldDescriptions[$name] : null; |
||
| 1749 | } |
||
| 1750 | |||
| 1751 | /** |
||
| 1752 | * Returns true if the admin has a FieldDescription with the given $name. |
||
| 1753 | * |
||
| 1754 | * @param string $name |
||
| 1755 | * |
||
| 1756 | * @return bool |
||
| 1757 | */ |
||
| 1758 | public function hasFormFieldDescription($name) |
||
| 1759 | { |
||
| 1760 | return \array_key_exists($name, $this->formFieldDescriptions) ? true : false; |
||
| 1761 | } |
||
| 1762 | |||
| 1763 | public function addFormFieldDescription($name, FieldDescriptionInterface $fieldDescription) |
||
| 1764 | { |
||
| 1765 | $this->formFieldDescriptions[$name] = $fieldDescription; |
||
| 1766 | } |
||
| 1767 | |||
| 1768 | /** |
||
| 1769 | * remove a FieldDescription. |
||
| 1770 | * |
||
| 1771 | * @param string $name |
||
| 1772 | */ |
||
| 1773 | public function removeFormFieldDescription($name) |
||
| 1774 | { |
||
| 1775 | unset($this->formFieldDescriptions[$name]); |
||
| 1776 | } |
||
| 1777 | |||
| 1778 | /** |
||
| 1779 | * build and return the collection of form FieldDescription. |
||
| 1780 | * |
||
| 1781 | * @return array collection of form FieldDescription |
||
| 1782 | */ |
||
| 1783 | public function getShowFieldDescriptions() |
||
| 1784 | { |
||
| 1785 | $this->buildShow(); |
||
| 1786 | |||
| 1787 | return $this->showFieldDescriptions; |
||
| 1788 | } |
||
| 1789 | |||
| 1790 | /** |
||
| 1791 | * Returns the form FieldDescription with the given $name. |
||
| 1792 | * |
||
| 1793 | * @param string $name |
||
| 1794 | * |
||
| 1795 | * @return FieldDescriptionInterface |
||
| 1796 | */ |
||
| 1797 | public function getShowFieldDescription($name) |
||
| 1798 | { |
||
| 1799 | $this->buildShow(); |
||
| 1800 | |||
| 1801 | return $this->hasShowFieldDescription($name) ? $this->showFieldDescriptions[$name] : null; |
||
| 1802 | } |
||
| 1803 | |||
| 1804 | public function hasShowFieldDescription($name) |
||
| 1805 | { |
||
| 1806 | return \array_key_exists($name, $this->showFieldDescriptions); |
||
| 1807 | } |
||
| 1808 | |||
| 1809 | public function addShowFieldDescription($name, FieldDescriptionInterface $fieldDescription) |
||
| 1810 | { |
||
| 1811 | $this->showFieldDescriptions[$name] = $fieldDescription; |
||
| 1812 | } |
||
| 1813 | |||
| 1814 | public function removeShowFieldDescription($name) |
||
| 1815 | { |
||
| 1816 | unset($this->showFieldDescriptions[$name]); |
||
| 1817 | } |
||
| 1818 | |||
| 1819 | public function getListFieldDescriptions() |
||
| 1820 | { |
||
| 1821 | $this->buildList(); |
||
| 1822 | |||
| 1823 | return $this->listFieldDescriptions; |
||
| 1824 | } |
||
| 1825 | |||
| 1826 | public function getListFieldDescription($name) |
||
| 1827 | { |
||
| 1828 | return $this->hasListFieldDescription($name) ? $this->listFieldDescriptions[$name] : null; |
||
| 1829 | } |
||
| 1830 | |||
| 1831 | public function hasListFieldDescription($name) |
||
| 1832 | { |
||
| 1833 | $this->buildList(); |
||
| 1834 | |||
| 1835 | return \array_key_exists($name, $this->listFieldDescriptions) ? true : false; |
||
| 1836 | } |
||
| 1837 | |||
| 1838 | public function addListFieldDescription($name, FieldDescriptionInterface $fieldDescription) |
||
| 1839 | { |
||
| 1840 | $this->listFieldDescriptions[$name] = $fieldDescription; |
||
| 1841 | } |
||
| 1842 | |||
| 1843 | public function removeListFieldDescription($name) |
||
| 1844 | { |
||
| 1845 | unset($this->listFieldDescriptions[$name]); |
||
| 1846 | } |
||
| 1847 | |||
| 1848 | public function getFilterFieldDescription($name) |
||
| 1849 | { |
||
| 1850 | return $this->hasFilterFieldDescription($name) ? $this->filterFieldDescriptions[$name] : null; |
||
| 1851 | } |
||
| 1852 | |||
| 1853 | public function hasFilterFieldDescription($name) |
||
| 1854 | { |
||
| 1855 | return \array_key_exists($name, $this->filterFieldDescriptions) ? true : false; |
||
| 1856 | } |
||
| 1857 | |||
| 1858 | public function addFilterFieldDescription($name, FieldDescriptionInterface $fieldDescription) |
||
| 1859 | { |
||
| 1860 | $this->filterFieldDescriptions[$name] = $fieldDescription; |
||
| 1861 | } |
||
| 1862 | |||
| 1863 | public function removeFilterFieldDescription($name) |
||
| 1864 | { |
||
| 1865 | unset($this->filterFieldDescriptions[$name]); |
||
| 1866 | } |
||
| 1867 | |||
| 1868 | public function getFilterFieldDescriptions() |
||
| 1869 | { |
||
| 1870 | $this->buildDatagrid(); |
||
| 1871 | |||
| 1872 | return $this->filterFieldDescriptions; |
||
| 1873 | } |
||
| 1874 | |||
| 1875 | public function addChild(AdminInterface $child) |
||
| 1876 | { |
||
| 1877 | for ($parentAdmin = $this; null !== $parentAdmin; $parentAdmin = $parentAdmin->getParent()) { |
||
| 1878 | if ($parentAdmin->getCode() !== $child->getCode()) { |
||
| 1879 | continue; |
||
| 1880 | } |
||
| 1881 | |||
| 1882 | throw new \RuntimeException(sprintf( |
||
| 1883 | 'Circular reference detected! The child admin `%s` is already in the parent tree of the `%s` admin.', |
||
| 1884 | $child->getCode(), |
||
| 1885 | $this->getCode() |
||
| 1886 | )); |
||
| 1887 | } |
||
| 1888 | |||
| 1889 | $this->children[$child->getCode()] = $child; |
||
| 1890 | |||
| 1891 | $child->setParent($this); |
||
| 1892 | |||
| 1893 | // NEXT_MAJOR: remove $args and add $field parameter to this function on next Major |
||
| 1894 | |||
| 1895 | $args = \func_get_args(); |
||
| 1896 | |||
| 1897 | if (isset($args[1])) { |
||
| 1898 | $child->addParentAssociationMapping($this->getCode(), $args[1]); |
||
| 1899 | } else { |
||
| 1900 | @trigger_error( |
||
| 1901 | 'Calling "addChild" without second argument is deprecated since' |
||
| 1902 | .' sonata-project/admin-bundle 3.35 and will not be allowed in 4.0.', |
||
| 1903 | E_USER_DEPRECATED |
||
| 1904 | ); |
||
| 1905 | } |
||
| 1906 | } |
||
| 1907 | |||
| 1908 | public function hasChild($code) |
||
| 1912 | |||
| 1913 | public function getChildren() |
||
| 1917 | |||
| 1918 | public function getChild($code) |
||
| 1922 | |||
| 1923 | public function setParent(AdminInterface $parent) |
||
| 1927 | |||
| 1928 | public function getParent() |
||
| 1932 | |||
| 1933 | final public function getRootAncestor() |
||
| 1943 | |||
| 1944 | final public function getChildDepth() |
||
| 1956 | |||
| 1957 | final public function getCurrentLeafChildAdmin() |
||
| 1971 | |||
| 1972 | public function isChild() |
||
| 1976 | |||
| 1977 | /** |
||
| 1978 | * Returns true if the admin has children, false otherwise. |
||
| 1979 | * |
||
| 1980 | * @return bool if the admin has children |
||
| 1981 | */ |
||
| 1982 | public function hasChildren() |
||
| 1986 | |||
| 1987 | public function setUniqid($uniqid) |
||
| 1991 | |||
| 1992 | public function getUniqid() |
||
| 2000 | |||
| 2001 | /** |
||
| 2002 | * Returns the classname label. |
||
| 2003 | * |
||
| 2004 | * @return string the classname label |
||
| 2005 | */ |
||
| 2006 | public function getClassnameLabel() |
||
| 2010 | |||
| 2011 | public function getPersistentParameters() |
||
| 2012 | { |
||
| 2013 | $parameters = []; |
||
| 2014 | |||
| 2015 | foreach ($this->getExtensions() as $extension) { |
||
| 2016 | $params = $extension->getPersistentParameters($this); |
||
| 2017 | |||
| 2018 | if (!\is_array($params)) { |
||
| 2019 | throw new \RuntimeException(sprintf('The %s::getPersistentParameters must return an array', \get_class($extension))); |
||
| 2020 | } |
||
| 2021 | |||
| 2022 | $parameters = array_merge($parameters, $params); |
||
| 2023 | } |
||
| 2024 | |||
| 2025 | return $parameters; |
||
| 2026 | } |
||
| 2027 | |||
| 2028 | /** |
||
| 2029 | * @param string $name |
||
| 2030 | * |
||
| 2031 | * @return mixed|null |
||
| 2032 | */ |
||
| 2033 | public function getPersistentParameter($name) |
||
| 2034 | { |
||
| 2035 | $parameters = $this->getPersistentParameters(); |
||
| 2036 | |||
| 2037 | return $parameters[$name] ?? null; |
||
| 2038 | } |
||
| 2039 | |||
| 2040 | public function getBreadcrumbs($action) |
||
| 2041 | { |
||
| 2042 | @trigger_error( |
||
| 2043 | 'The '.__METHOD__.' method is deprecated since version 3.2 and will be removed in 4.0.'. |
||
| 2044 | ' Use Sonata\AdminBundle\Admin\BreadcrumbsBuilder::getBreadcrumbs instead.', |
||
| 2045 | E_USER_DEPRECATED |
||
| 2046 | ); |
||
| 2047 | |||
| 2048 | return $this->getBreadcrumbsBuilder()->getBreadcrumbs($this, $action); |
||
| 2049 | } |
||
| 2050 | |||
| 2051 | /** |
||
| 2052 | * Generates the breadcrumbs array. |
||
| 2053 | * |
||
| 2054 | * Note: the method will be called by the top admin instance (parent => child) |
||
| 2055 | * |
||
| 2056 | * @param string $action |
||
| 2057 | * |
||
| 2058 | * @return array |
||
| 2059 | */ |
||
| 2060 | public function buildBreadcrumbs($action, ?ItemInterface $menu = null) |
||
| 2061 | { |
||
| 2062 | @trigger_error( |
||
| 2063 | 'The '.__METHOD__.' method is deprecated since version 3.2 and will be removed in 4.0.', |
||
| 2064 | E_USER_DEPRECATED |
||
| 2065 | ); |
||
| 2066 | |||
| 2067 | if (isset($this->breadcrumbs[$action])) { |
||
| 2068 | return $this->breadcrumbs[$action]; |
||
| 2069 | } |
||
| 2070 | |||
| 2071 | return $this->breadcrumbs[$action] = $this->getBreadcrumbsBuilder() |
||
| 2072 | ->buildBreadcrumbs($this, $action, $menu); |
||
| 2073 | } |
||
| 2074 | |||
| 2075 | /** |
||
| 2076 | * NEXT_MAJOR : remove this method. |
||
| 2077 | * |
||
| 2078 | * @return BreadcrumbsBuilderInterface |
||
| 2079 | */ |
||
| 2080 | final public function getBreadcrumbsBuilder() |
||
| 2081 | { |
||
| 2082 | @trigger_error( |
||
| 2083 | 'The '.__METHOD__.' method is deprecated since version 3.2 and will be removed in 4.0.'. |
||
| 2084 | ' Use the sonata.admin.breadcrumbs_builder service instead.', |
||
| 2085 | E_USER_DEPRECATED |
||
| 2086 | ); |
||
| 2087 | if (null === $this->breadcrumbsBuilder) { |
||
| 2088 | $this->breadcrumbsBuilder = new BreadcrumbsBuilder( |
||
| 2089 | $this->getConfigurationPool()->getContainer()->getParameter('sonata.admin.configuration.breadcrumbs') |
||
| 2090 | ); |
||
| 2091 | } |
||
| 2092 | |||
| 2093 | return $this->breadcrumbsBuilder; |
||
| 2094 | } |
||
| 2095 | |||
| 2096 | /** |
||
| 2097 | * NEXT_MAJOR : remove this method. |
||
| 2098 | * |
||
| 2099 | * @return AbstractAdmin |
||
| 2100 | */ |
||
| 2101 | final public function setBreadcrumbsBuilder(BreadcrumbsBuilderInterface $value) |
||
| 2102 | { |
||
| 2103 | @trigger_error( |
||
| 2104 | 'The '.__METHOD__.' method is deprecated since version 3.2 and will be removed in 4.0.'. |
||
| 2105 | ' Use the sonata.admin.breadcrumbs_builder service instead.', |
||
| 2106 | E_USER_DEPRECATED |
||
| 2107 | ); |
||
| 2108 | $this->breadcrumbsBuilder = $value; |
||
| 2109 | |||
| 2110 | return $this; |
||
| 2111 | } |
||
| 2112 | |||
| 2113 | public function setCurrentChild($currentChild) |
||
| 2114 | { |
||
| 2115 | $this->currentChild = $currentChild; |
||
| 2116 | } |
||
| 2117 | |||
| 2118 | /** |
||
| 2119 | * NEXT_MAJOR: Remove this method. |
||
| 2120 | * |
||
| 2121 | * @deprecated since sonata-project/admin-bundle 3.x, to be removed in 4.0 |
||
| 2122 | */ |
||
| 2123 | public function getCurrentChild() |
||
| 2124 | { |
||
| 2125 | @trigger_error( |
||
| 2126 | sprintf( |
||
| 2136 | |||
| 2137 | public function isCurrentChild(): bool |
||
| 2141 | |||
| 2142 | /** |
||
| 2143 | * Returns the current child admin instance. |
||
| 2144 | * |
||
| 2145 | * @return AdminInterface|null the current child admin instance |
||
| 2146 | */ |
||
| 2147 | public function getCurrentChildAdmin() |
||
| 2157 | |||
| 2158 | public function trans($id, array $parameters = [], $domain = null, $locale = null) |
||
| 2169 | |||
| 2170 | /** |
||
| 2171 | * Translate a message id. |
||
| 2172 | * |
||
| 2173 | * NEXT_MAJOR: remove this method |
||
| 2174 | * |
||
| 2175 | * @param string $id |
||
| 2176 | * @param int $count |
||
| 2177 | * @param string|null $domain |
||
| 2178 | * @param string|null $locale |
||
| 2179 | * |
||
| 2180 | * @return string the translated string |
||
| 2181 | * |
||
| 2182 | * @deprecated since sonata-project/admin-bundle 3.9, to be removed with 4.0 |
||
| 2183 | */ |
||
| 2184 | public function transChoice($id, $count, array $parameters = [], $domain = null, $locale = null) |
||
| 2195 | |||
| 2196 | public function setTranslationDomain($translationDomain) |
||
| 2200 | |||
| 2201 | public function getTranslationDomain() |
||
| 2205 | |||
| 2206 | /** |
||
| 2207 | * {@inheritdoc} |
||
| 2208 | * |
||
| 2209 | * NEXT_MAJOR: remove this method |
||
| 2210 | * |
||
| 2211 | * @deprecated since sonata-project/admin-bundle 3.9, to be removed with 4.0 |
||
| 2212 | */ |
||
| 2213 | public function setTranslator(TranslatorInterface $translator) |
||
| 2225 | |||
| 2226 | /** |
||
| 2227 | * {@inheritdoc} |
||
| 2228 | * |
||
| 2229 | * NEXT_MAJOR: remove this method |
||
| 2230 | * |
||
| 2231 | * @deprecated since sonata-project/admin-bundle 3.9, to be removed with 4.0 |
||
| 2232 | */ |
||
| 2233 | public function getTranslator() |
||
| 2242 | |||
| 2243 | public function getTranslationLabel($label, $context = '', $type = '') |
||
| 2247 | |||
| 2248 | public function setRequest(Request $request) |
||
| 2256 | |||
| 2257 | public function getRequest() |
||
| 2265 | |||
| 2266 | public function hasRequest() |
||
| 2270 | |||
| 2271 | public function setFormContractor(FormContractorInterface $formBuilder) |
||
| 2275 | |||
| 2276 | /** |
||
| 2277 | * @return FormContractorInterface |
||
| 2278 | */ |
||
| 2279 | public function getFormContractor() |
||
| 2283 | |||
| 2284 | public function setDatagridBuilder(DatagridBuilderInterface $datagridBuilder) |
||
| 2288 | |||
| 2289 | public function getDatagridBuilder() |
||
| 2293 | |||
| 2294 | public function setListBuilder(ListBuilderInterface $listBuilder) |
||
| 2298 | |||
| 2299 | public function getListBuilder() |
||
| 2303 | |||
| 2304 | public function setShowBuilder(ShowBuilderInterface $showBuilder) |
||
| 2308 | |||
| 2309 | /** |
||
| 2310 | * @return ShowBuilderInterface |
||
| 2311 | */ |
||
| 2312 | public function getShowBuilder() |
||
| 2316 | |||
| 2317 | public function setConfigurationPool(Pool $configurationPool) |
||
| 2321 | |||
| 2322 | /** |
||
| 2323 | * @return Pool |
||
| 2324 | */ |
||
| 2325 | public function getConfigurationPool() |
||
| 2329 | |||
| 2330 | public function setRouteGenerator(RouteGeneratorInterface $routeGenerator) |
||
| 2334 | |||
| 2335 | /** |
||
| 2336 | * @return RouteGeneratorInterface |
||
| 2337 | */ |
||
| 2338 | public function getRouteGenerator() |
||
| 2342 | |||
| 2343 | public function getCode() |
||
| 2347 | |||
| 2348 | /** |
||
| 2349 | * NEXT_MAJOR: Remove this function. |
||
| 2350 | * |
||
| 2351 | * @deprecated This method is deprecated since sonata-project/admin-bundle 3.24 and will be removed in 4.0 |
||
| 2352 | * |
||
| 2353 | * @param string $baseCodeRoute |
||
| 2354 | */ |
||
| 2355 | public function setBaseCodeRoute($baseCodeRoute) |
||
| 2364 | |||
| 2365 | public function getBaseCodeRoute() |
||
| 2387 | |||
| 2388 | public function getModelManager() |
||
| 2392 | |||
| 2393 | public function setModelManager(ModelManagerInterface $modelManager) |
||
| 2397 | |||
| 2398 | public function getManagerType() |
||
| 2402 | |||
| 2403 | /** |
||
| 2404 | * @param string $type |
||
| 2405 | */ |
||
| 2406 | public function setManagerType($type) |
||
| 2410 | |||
| 2411 | public function getObjectIdentifier() |
||
| 2415 | |||
| 2416 | /** |
||
| 2417 | * Set the roles and permissions per role. |
||
| 2418 | */ |
||
| 2419 | public function setSecurityInformation(array $information) |
||
| 2423 | |||
| 2424 | public function getSecurityInformation() |
||
| 2428 | |||
| 2429 | /** |
||
| 2430 | * Return the list of permissions the user should have in order to display the admin. |
||
| 2431 | * |
||
| 2432 | * @param string $context |
||
| 2433 | * |
||
| 2434 | * @return array |
||
| 2435 | */ |
||
| 2436 | public function getPermissionsShow($context) |
||
| 2445 | |||
| 2446 | public function showIn($context) |
||
| 2455 | |||
| 2456 | public function createObjectSecurity($object) |
||
| 2460 | |||
| 2461 | public function setSecurityHandler(SecurityHandlerInterface $securityHandler) |
||
| 2465 | |||
| 2466 | public function getSecurityHandler() |
||
| 2470 | |||
| 2471 | public function isGranted($name, $object = null) |
||
| 2482 | |||
| 2483 | public function getUrlSafeIdentifier($entity) |
||
| 2487 | |||
| 2488 | public function getNormalizedIdentifier($entity) |
||
| 2492 | |||
| 2493 | public function id($entity) |
||
| 2497 | |||
| 2498 | public function setValidator($validator) |
||
| 2509 | |||
| 2510 | public function getValidator() |
||
| 2514 | |||
| 2515 | public function getShow() |
||
| 2521 | |||
| 2522 | public function setFormTheme(array $formTheme) |
||
| 2526 | |||
| 2527 | public function getFormTheme() |
||
| 2531 | |||
| 2532 | public function setFilterTheme(array $filterTheme) |
||
| 2536 | |||
| 2537 | public function getFilterTheme() |
||
| 2541 | |||
| 2542 | public function addExtension(AdminExtensionInterface $extension) |
||
| 2546 | |||
| 2547 | public function getExtensions() |
||
| 2551 | |||
| 2552 | public function setMenuFactory(FactoryInterface $menuFactory) |
||
| 2556 | |||
| 2557 | public function getMenuFactory() |
||
| 2561 | |||
| 2562 | public function setRouteBuilder(RouteBuilderInterface $routeBuilder) |
||
| 2566 | |||
| 2567 | public function getRouteBuilder() |
||
| 2571 | |||
| 2572 | public function toString($object) |
||
| 2584 | |||
| 2585 | public function setLabelTranslatorStrategy(LabelTranslatorStrategyInterface $labelTranslatorStrategy) |
||
| 2589 | |||
| 2590 | public function getLabelTranslatorStrategy() |
||
| 2594 | |||
| 2595 | public function supportsPreviewMode() |
||
| 2599 | |||
| 2600 | /** |
||
| 2601 | * Set custom per page options. |
||
| 2602 | */ |
||
| 2603 | public function setPerPageOptions(array $options) |
||
| 2607 | |||
| 2608 | /** |
||
| 2609 | * Returns predefined per page options. |
||
| 2610 | * |
||
| 2611 | * @return array |
||
| 2612 | */ |
||
| 2613 | public function getPerPageOptions() |
||
| 2617 | |||
| 2618 | /** |
||
| 2619 | * Set pager type. |
||
| 2620 | * |
||
| 2621 | * @param string $pagerType |
||
| 2622 | */ |
||
| 2623 | public function setPagerType($pagerType) |
||
| 2627 | |||
| 2628 | /** |
||
| 2629 | * Get pager type. |
||
| 2630 | * |
||
| 2631 | * @return string |
||
| 2632 | */ |
||
| 2633 | public function getPagerType() |
||
| 2637 | |||
| 2638 | /** |
||
| 2639 | * Returns true if the per page value is allowed, false otherwise. |
||
| 2640 | * |
||
| 2641 | * @param int $perPage |
||
| 2642 | * |
||
| 2643 | * @return bool |
||
| 2644 | */ |
||
| 2645 | public function determinedPerPageValue($perPage) |
||
| 2649 | |||
| 2650 | public function isAclEnabled() |
||
| 2654 | |||
| 2655 | public function getObjectMetadata($object) |
||
| 2659 | |||
| 2660 | public function getListModes() |
||
| 2664 | |||
| 2665 | public function setListMode($mode) |
||
| 2673 | |||
| 2674 | public function getListMode() |
||
| 2682 | |||
| 2683 | public function getAccessMapping() |
||
| 2687 | |||
| 2688 | public function checkAccess($action, $object = null) |
||
| 2710 | |||
| 2711 | /** |
||
| 2712 | * Hook to handle access authorization, without throw Exception. |
||
| 2713 | * |
||
| 2714 | * @param string $action |
||
| 2715 | * @param object $object |
||
| 2716 | * |
||
| 2717 | * @return bool |
||
| 2718 | */ |
||
| 2719 | public function hasAccess($action, $object = null) |
||
| 2739 | |||
| 2740 | /** |
||
| 2741 | * @param string $action |
||
| 2742 | * @param object|null $object |
||
| 2743 | * |
||
| 2744 | * @return array |
||
| 2745 | */ |
||
| 2746 | public function configureActionButtons($action, $object = null) |
||
| 2820 | |||
| 2821 | /** |
||
| 2822 | * @param string $action |
||
| 2823 | * @param object $object |
||
| 2824 | * |
||
| 2825 | * @return array |
||
| 2826 | */ |
||
| 2827 | public function getActionButtons($action, $object = null) |
||
| 2840 | |||
| 2841 | /** |
||
| 2842 | * Get the list of actions that can be accessed directly from the dashboard. |
||
| 2843 | * |
||
| 2844 | * @return array |
||
| 2845 | */ |
||
| 2846 | public function getDashboardActions() |
||
| 2873 | |||
| 2874 | /** |
||
| 2875 | * Setting to true will enable mosaic button for the admin screen. |
||
| 2876 | * Setting to false will hide mosaic button for the admin screen. |
||
| 2877 | * |
||
| 2878 | * @param bool $isShown |
||
| 2879 | */ |
||
| 2880 | final public function showMosaicButton($isShown) |
||
| 2888 | |||
| 2889 | /** |
||
| 2890 | * @param object $object |
||
| 2891 | */ |
||
| 2892 | final public function getSearchResultLink($object) |
||
| 2902 | |||
| 2903 | /** |
||
| 2904 | * Checks if a filter type is set to a default value. |
||
| 2905 | * |
||
| 2906 | * @param string $name |
||
| 2907 | * |
||
| 2908 | * @return bool |
||
| 2909 | */ |
||
| 2910 | final public function isDefaultFilter($name) |
||
| 2921 | |||
| 2922 | /** |
||
| 2923 | * Check object existence and access, without throw Exception. |
||
| 2924 | * |
||
| 2925 | * @param string $action |
||
| 2926 | * @param object $object |
||
| 2927 | * |
||
| 2928 | * @return bool |
||
| 2929 | */ |
||
| 2930 | public function canAccessObject($action, $object) |
||
| 2934 | |||
| 2935 | protected function configureQuery(ProxyQueryInterface $query): ProxyQueryInterface |
||
| 2939 | |||
| 2940 | /** |
||
| 2941 | * @return MutableTemplateRegistryInterface |
||
| 2942 | */ |
||
| 2943 | final protected function getTemplateRegistry() |
||
| 2947 | |||
| 2948 | /** |
||
| 2949 | * Returns a list of default filters. |
||
| 2950 | * |
||
| 2951 | * @return array |
||
| 2952 | */ |
||
| 2953 | final protected function getDefaultFilterValues() |
||
| 2968 | |||
| 2969 | protected function configureFormFields(FormMapper $form) |
||
| 2972 | |||
| 2973 | protected function configureListFields(ListMapper $list) |
||
| 2976 | |||
| 2977 | protected function configureDatagridFilters(DatagridMapper $filter) |
||
| 2980 | |||
| 2981 | protected function configureShowFields(ShowMapper $show) |
||
| 2984 | |||
| 2985 | protected function configureRoutes(RouteCollection $collection) |
||
| 2988 | |||
| 2989 | /** |
||
| 2990 | * Allows you to customize batch actions. |
||
| 2991 | * |
||
| 2992 | * @param array $actions List of actions |
||
| 2993 | * |
||
| 2994 | * @return array |
||
| 2995 | */ |
||
| 2996 | protected function configureBatchActions($actions) |
||
| 3000 | |||
| 3001 | /** |
||
| 3002 | * NEXT_MAJOR: remove this method. |
||
| 3003 | * |
||
| 3004 | * @deprecated Use configureTabMenu instead |
||
| 3005 | */ |
||
| 3006 | protected function configureSideMenu(ItemInterface $menu, $action, ?AdminInterface $childAdmin = null) |
||
| 3009 | |||
| 3010 | /** |
||
| 3011 | * Configures the tab menu in your admin. |
||
| 3012 | * |
||
| 3013 | * @param string $action |
||
| 3014 | */ |
||
| 3015 | protected function configureTabMenu(ItemInterface $menu, $action, ?AdminInterface $childAdmin = null) |
||
| 3021 | |||
| 3022 | /** |
||
| 3023 | * build the view FieldDescription array. |
||
| 3024 | */ |
||
| 3025 | protected function buildShow() |
||
| 3040 | |||
| 3041 | /** |
||
| 3042 | * build the list FieldDescription array. |
||
| 3043 | */ |
||
| 3044 | protected function buildList() |
||
| 3100 | |||
| 3101 | /** |
||
| 3102 | * Build the form FieldDescription collection. |
||
| 3103 | */ |
||
| 3104 | protected function buildForm() |
||
| 3137 | |||
| 3138 | /** |
||
| 3139 | * Gets the subclass corresponding to the given name. |
||
| 3140 | * |
||
| 3141 | * @param string $name The name of the sub class |
||
| 3142 | * |
||
| 3143 | * @return string the subclass |
||
| 3144 | */ |
||
| 3145 | protected function getSubClass($name) |
||
| 3157 | |||
| 3158 | /** |
||
| 3159 | * Attach the inline validator to the model metadata, this must be done once per admin. |
||
| 3160 | */ |
||
| 3161 | protected function attachInlineValidator() |
||
| 3188 | |||
| 3189 | /** |
||
| 3190 | * Predefine per page options. |
||
| 3191 | */ |
||
| 3192 | protected function predefinePerPageOptions() |
||
| 3198 | |||
| 3199 | /** |
||
| 3200 | * Return list routes with permissions name. |
||
| 3201 | * |
||
| 3202 | * @return array<string, string> |
||
| 3203 | */ |
||
| 3204 | protected function getAccess() |
||
| 3229 | |||
| 3230 | /** |
||
| 3231 | * Configures a list of default filters. |
||
| 3232 | */ |
||
| 3233 | protected function configureDefaultFilterValues(array &$filterValues) |
||
| 3236 | |||
| 3237 | /** |
||
| 3238 | * Build all the related urls to the current admin. |
||
| 3239 | */ |
||
| 3240 | private function buildRoutes(): void |
||
| 3263 | } |
||
| 3264 | |||
| 3266 |
If you suppress an error, we recommend checking for the error condition explicitly: