@@ -936,6 +936,7 @@ discard block |
||
936 | 936 | |
937 | 937 | /** |
938 | 938 | * NEXT_MAJOR: remove this method. |
939 | + * @param string $subClass |
|
939 | 940 | */ |
940 | 941 | public function addSubClass($subClass): void |
941 | 942 | { |
@@ -1064,6 +1065,9 @@ discard block |
||
1064 | 1065 | return $this->routeGenerator->hasAdminRoute($this, $name); |
1065 | 1066 | } |
1066 | 1067 | |
1068 | + /** |
|
1069 | + * @param string $adminCode |
|
1070 | + */ |
|
1067 | 1071 | public function isCurrentRoute(string $name, ?string $adminCode = null): bool |
1068 | 1072 | { |
1069 | 1073 | if (!$this->hasRequest()) { |
@@ -1309,6 +1313,9 @@ discard block |
||
1309 | 1313 | return $this->baseControllerName; |
1310 | 1314 | } |
1311 | 1315 | |
1316 | + /** |
|
1317 | + * @param string $label |
|
1318 | + */ |
|
1312 | 1319 | public function setLabel(?string $label): void |
1313 | 1320 | { |
1314 | 1321 | $this->label = $label; |
@@ -1809,6 +1816,7 @@ discard block |
||
1809 | 1816 | * |
1810 | 1817 | * NEXT_MAJOR: remove this method |
1811 | 1818 | * |
1819 | + * @param string $domain |
|
1812 | 1820 | * @return string the translated string |
1813 | 1821 | * |
1814 | 1822 | * @deprecated since sonata-project/admin-bundle 3.9, to be removed with 4.0 |
@@ -1989,6 +1997,9 @@ discard block |
||
1989 | 1997 | return $this->managerType; |
1990 | 1998 | } |
1991 | 1999 | |
2000 | + /** |
|
2001 | + * @param string $type |
|
2002 | + */ |
|
1992 | 2003 | public function setManagerType(?string $type): void |
1993 | 2004 | { |
1994 | 2005 | $this->managerType = $type; |
@@ -2399,6 +2410,7 @@ discard block |
||
2399 | 2410 | |
2400 | 2411 | /** |
2401 | 2412 | * {@inheritdoc} |
2413 | + * @param boolean $isShown |
|
2402 | 2414 | */ |
2403 | 2415 | final public function showMosaicButton($isShown): void |
2404 | 2416 | { |
@@ -2528,6 +2540,7 @@ discard block |
||
2528 | 2540 | * NEXT_MAJOR: remove this method. |
2529 | 2541 | * |
2530 | 2542 | * @deprecated Use configureTabMenu instead |
2543 | + * @param string $action |
|
2531 | 2544 | */ |
2532 | 2545 | protected function configureSideMenu(MenuItemInterface $menu, $action, AdminInterface $childAdmin = null): void |
2533 | 2546 | { |
@@ -37,26 +37,53 @@ discard block |
||
37 | 37 | */ |
38 | 38 | interface AdminInterface extends AccessRegistryInterface, FieldDescriptionRegistryInterface, LifecycleHookProviderInterface, MenuBuilderInterface, ParentAdminInterface, UrlGeneratorInterface |
39 | 39 | { |
40 | + /** |
|
41 | + * @return void |
|
42 | + */ |
|
40 | 43 | public function setMenuFactory(MenuFactoryInterface $menuFactory): void; |
41 | 44 | |
42 | 45 | public function getMenuFactory(): ?MenuFactoryInterface; |
43 | 46 | |
47 | + /** |
|
48 | + * @return void |
|
49 | + */ |
|
44 | 50 | public function setFormContractor(FormContractorInterface $formContractor): void; |
45 | 51 | |
52 | + /** |
|
53 | + * @return void |
|
54 | + */ |
|
46 | 55 | public function setListBuilder(ListBuilderInterface $listBuilder): void; |
47 | 56 | |
57 | + /** |
|
58 | + * @return ListBuilderInterface |
|
59 | + */ |
|
48 | 60 | public function getListBuilder(): ?ListBuilderInterface; |
49 | 61 | |
62 | + /** |
|
63 | + * @return void |
|
64 | + */ |
|
50 | 65 | public function setDatagridBuilder(DatagridBuilderInterface $datagridBuilder): void; |
51 | 66 | |
67 | + /** |
|
68 | + * @return DatagridBuilderInterface |
|
69 | + */ |
|
52 | 70 | public function getDatagridBuilder(): ?DatagridBuilderInterface; |
53 | 71 | |
72 | + /** |
|
73 | + * @return void |
|
74 | + */ |
|
54 | 75 | public function setTranslator(TranslatorInterface $translator): void; |
55 | 76 | |
56 | 77 | public function getTranslator(): ?TranslatorInterface; |
57 | 78 | |
79 | + /** |
|
80 | + * @return void |
|
81 | + */ |
|
58 | 82 | public function setRequest(Request $request): void; |
59 | 83 | |
84 | + /** |
|
85 | + * @return void |
|
86 | + */ |
|
60 | 87 | public function setConfigurationPool(Pool $pool): void; |
61 | 88 | |
62 | 89 | /** |
@@ -67,14 +94,21 @@ discard block |
||
67 | 94 | */ |
68 | 95 | public function getClass(): string; |
69 | 96 | |
97 | + /** |
|
98 | + * @return void |
|
99 | + */ |
|
70 | 100 | public function attachAdminClass(FieldDescriptionInterface $fieldDescription): void; |
71 | 101 | |
102 | + /** |
|
103 | + * @return DatagridInterface|null |
|
104 | + */ |
|
72 | 105 | public function getDatagrid(): ?DatagridInterface; |
73 | 106 | |
74 | 107 | /** |
75 | 108 | * Set base controller name. |
76 | 109 | * |
77 | 110 | * @param string $baseControllerName |
111 | + * @return void |
|
78 | 112 | */ |
79 | 113 | public function setBaseControllerName($baseControllerName): void; |
80 | 114 | |
@@ -85,6 +119,7 @@ discard block |
||
85 | 119 | |
86 | 120 | /** |
87 | 121 | * Sets a list of templates. |
122 | + * @return void |
|
88 | 123 | */ |
89 | 124 | public function setTemplates(array $templates): void; |
90 | 125 | |
@@ -93,9 +128,13 @@ discard block |
||
93 | 128 | * |
94 | 129 | * @param string $name |
95 | 130 | * @param string $template |
131 | + * @return void |
|
96 | 132 | */ |
97 | 133 | public function setTemplate($name, $template): void; |
98 | 134 | |
135 | + /** |
|
136 | + * @return ModelManagerInterface |
|
137 | + */ |
|
99 | 138 | public function getModelManager(): ?ModelManagerInterface; |
100 | 139 | |
101 | 140 | /** |
@@ -115,6 +154,7 @@ discard block |
||
115 | 154 | |
116 | 155 | /** |
117 | 156 | * Returns a form depend on the given $object. |
157 | + * @return \Symfony\Component\Form\Form|null |
|
118 | 158 | */ |
119 | 159 | public function getForm(): ?FormInterface; |
120 | 160 | |
@@ -145,6 +185,9 @@ discard block |
||
145 | 185 | */ |
146 | 186 | public function getSecurityInformation(): array; |
147 | 187 | |
188 | + /** |
|
189 | + * @return void |
|
190 | + */ |
|
148 | 191 | public function setParentFieldDescription(FieldDescriptionInterface $parentFieldDescription): void; |
149 | 192 | |
150 | 193 | /** |
@@ -188,8 +231,14 @@ discard block |
||
188 | 231 | */ |
189 | 232 | public function hasRoute($name): bool; |
190 | 233 | |
234 | + /** |
|
235 | + * @return void |
|
236 | + */ |
|
191 | 237 | public function setSecurityHandler(SecurityHandlerInterface $securityHandler): void; |
192 | 238 | |
239 | + /** |
|
240 | + * @return SecurityHandlerInterface |
|
241 | + */ |
|
193 | 242 | public function getSecurityHandler(): ?SecurityHandlerInterface; |
194 | 243 | |
195 | 244 | /** |
@@ -210,16 +259,25 @@ discard block |
||
210 | 259 | * |
211 | 260 | * @param object $entity |
212 | 261 | * |
213 | - * @return mixed |
|
262 | + * @return string |
|
214 | 263 | */ |
215 | 264 | public function id($entity); |
216 | 265 | |
266 | + /** |
|
267 | + * @return void |
|
268 | + */ |
|
217 | 269 | public function setValidator(ValidatorInterface $validator): void; |
218 | 270 | |
219 | 271 | public function getValidator(): ?ValidatorInterface; |
220 | 272 | |
273 | + /** |
|
274 | + * @return FieldDescriptionCollection|null |
|
275 | + */ |
|
221 | 276 | public function getShow(): ?FieldDescriptionCollection; |
222 | 277 | |
278 | + /** |
|
279 | + * @return void |
|
280 | + */ |
|
223 | 281 | public function setFormTheme(array $formTheme): void; |
224 | 282 | |
225 | 283 | /** |
@@ -227,6 +285,9 @@ discard block |
||
227 | 285 | */ |
228 | 286 | public function getFormTheme(): array; |
229 | 287 | |
288 | + /** |
|
289 | + * @return void |
|
290 | + */ |
|
230 | 291 | public function setFilterTheme(array $filterTheme): void; |
231 | 292 | |
232 | 293 | /** |
@@ -234,6 +295,9 @@ discard block |
||
234 | 295 | */ |
235 | 296 | public function getFilterTheme(): array; |
236 | 297 | |
298 | + /** |
|
299 | + * @return void |
|
300 | + */ |
|
237 | 301 | public function addExtension(AdminExtensionInterface $extension): void; |
238 | 302 | |
239 | 303 | /** |
@@ -243,8 +307,14 @@ discard block |
||
243 | 307 | */ |
244 | 308 | public function getExtensions(): array; |
245 | 309 | |
310 | + /** |
|
311 | + * @return void |
|
312 | + */ |
|
246 | 313 | public function setRouteBuilder(RouteBuilderInterface $routeBuilder): void; |
247 | 314 | |
315 | + /** |
|
316 | + * @return RouteBuilderInterface |
|
317 | + */ |
|
248 | 318 | public function getRouteBuilder(): ?RouteBuilderInterface; |
249 | 319 | |
250 | 320 | /** |
@@ -252,8 +322,14 @@ discard block |
||
252 | 322 | */ |
253 | 323 | public function toString($object): string; |
254 | 324 | |
325 | + /** |
|
326 | + * @return void |
|
327 | + */ |
|
255 | 328 | public function setLabelTranslatorStrategy(LabelTranslatorStrategyInterface $labelTranslatorStrategy): void; |
256 | 329 | |
330 | + /** |
|
331 | + * @return LabelTranslatorStrategyInterface |
|
332 | + */ |
|
257 | 333 | public function getLabelTranslatorStrategy(): ?LabelTranslatorStrategyInterface; |
258 | 334 | |
259 | 335 | /** |
@@ -270,6 +346,7 @@ discard block |
||
270 | 346 | |
271 | 347 | /** |
272 | 348 | * @param string $uniqId |
349 | + * @return void |
|
273 | 350 | */ |
274 | 351 | public function setUniqid($uniqId): void; |
275 | 352 | |
@@ -292,6 +369,7 @@ discard block |
||
292 | 369 | |
293 | 370 | /** |
294 | 371 | * @param object|null $subject |
372 | + * @return void |
|
295 | 373 | */ |
296 | 374 | public function setSubject($subject): void; |
297 | 375 | |
@@ -340,6 +418,7 @@ discard block |
||
340 | 418 | * |
341 | 419 | * @param string $actionName |
342 | 420 | * @param bool $allElements |
421 | + * @return void |
|
343 | 422 | */ |
344 | 423 | public function preBatchAction($actionName, ProxyQueryInterface $query, array &$idx, $allElements): void; |
345 | 424 | |
@@ -362,6 +441,7 @@ discard block |
||
362 | 441 | * |
363 | 442 | * @deprecated this feature cannot be stable, use a custom validator, |
364 | 443 | * the feature will be removed with Symfony 2.2 |
444 | + * @return void |
|
365 | 445 | */ |
366 | 446 | public function validate(ErrorElement $errorElement, $object): void; |
367 | 447 | |
@@ -374,11 +454,18 @@ discard block |
||
374 | 454 | * Add object security, fe. make the current user owner of the object. |
375 | 455 | * |
376 | 456 | * @param object $object |
457 | + * @return void |
|
377 | 458 | */ |
378 | 459 | public function createObjectSecurity($object): void; |
379 | 460 | |
461 | + /** |
|
462 | + * @return AdminInterface|null |
|
463 | + */ |
|
380 | 464 | public function getParent(): ?self; |
381 | 465 | |
466 | + /** |
|
467 | + * @return void |
|
468 | + */ |
|
382 | 469 | public function setParent(self $admin): void; |
383 | 470 | |
384 | 471 | /** |
@@ -390,6 +477,7 @@ discard block |
||
390 | 477 | * Set the translation domain. |
391 | 478 | * |
392 | 479 | * @param string $translationDomain the translation domain |
480 | + * @return void |
|
393 | 481 | */ |
394 | 482 | public function setTranslationDomain($translationDomain): void; |
395 | 483 | |
@@ -409,21 +497,29 @@ discard block |
||
409 | 497 | |
410 | 498 | /** |
411 | 499 | * Set the form groups. |
500 | + * @return void |
|
412 | 501 | */ |
413 | 502 | public function setFormGroups(array $formGroups): void; |
414 | 503 | |
415 | 504 | public function getFormTabs(); |
416 | 505 | |
506 | + /** |
|
507 | + * @return void |
|
508 | + */ |
|
417 | 509 | public function setFormTabs(array $formTabs): void; |
418 | 510 | |
419 | 511 | public function getShowTabs(); |
420 | 512 | |
513 | + /** |
|
514 | + * @return void |
|
515 | + */ |
|
421 | 516 | public function setShowTabs(array $showTabs): void; |
422 | 517 | |
423 | 518 | /** |
424 | 519 | * Remove a form group field. |
425 | 520 | * |
426 | 521 | * @param string $key |
522 | + * @return void |
|
427 | 523 | */ |
428 | 524 | public function removeFieldFromFormGroup($key): void; |
429 | 525 | |
@@ -436,6 +532,7 @@ discard block |
||
436 | 532 | |
437 | 533 | /** |
438 | 534 | * Set the show groups. |
535 | + * @return void |
|
439 | 536 | */ |
440 | 537 | public function setShowGroups(array $showGroups): void; |
441 | 538 | |
@@ -443,6 +540,7 @@ discard block |
||
443 | 540 | * Reorder items in showGroup. |
444 | 541 | * |
445 | 542 | * @param string $group |
543 | + * @return void |
|
446 | 544 | */ |
447 | 545 | public function reorderShowGroup($group, array $keys): void; |
448 | 546 | |
@@ -450,6 +548,7 @@ discard block |
||
450 | 548 | * add a FieldDescription. |
451 | 549 | * |
452 | 550 | * @param string $name |
551 | + * @return void |
|
453 | 552 | */ |
454 | 553 | public function addFormFieldDescription($name, FieldDescriptionInterface $fieldDescription): void; |
455 | 554 | |
@@ -457,6 +556,7 @@ discard block |
||
457 | 556 | * Remove a FieldDescription. |
458 | 557 | * |
459 | 558 | * @param string $name |
559 | + * @return void |
|
460 | 560 | */ |
461 | 561 | public function removeFormFieldDescription($name): void; |
462 | 562 | |
@@ -474,11 +574,13 @@ discard block |
||
474 | 574 | * Adds a new class to a list of supported sub classes. |
475 | 575 | * |
476 | 576 | * @param $subClass |
577 | + * @return void |
|
477 | 578 | */ |
478 | 579 | public function addSubClass($subClass): void; |
479 | 580 | |
480 | 581 | /** |
481 | 582 | * Sets the list of supported sub classes. |
583 | + * @return void |
|
482 | 584 | */ |
483 | 585 | public function setSubClasses(array $subClasses): void; |
484 | 586 | |
@@ -517,6 +619,7 @@ discard block |
||
517 | 619 | |
518 | 620 | /** |
519 | 621 | * Returns Admin`s label. |
622 | + * @return string |
|
520 | 623 | */ |
521 | 624 | public function getLabel(): ?string; |
522 | 625 | |
@@ -531,6 +634,7 @@ discard block |
||
531 | 634 | |
532 | 635 | /** |
533 | 636 | * Set the current child status. |
637 | + * @return void |
|
534 | 638 | */ |
535 | 639 | public function setCurrentChild(bool $currentChild): void; |
536 | 640 | |
@@ -560,6 +664,7 @@ discard block |
||
560 | 664 | |
561 | 665 | /** |
562 | 666 | * @param string $mode |
667 | + * @return void |
|
563 | 668 | */ |
564 | 669 | public function setListMode($mode): void; |
565 | 670 | |
@@ -589,12 +694,14 @@ discard block |
||
589 | 694 | * Returns the result link for an object. |
590 | 695 | * |
591 | 696 | * @param object $object |
697 | + * @return string|null |
|
592 | 698 | */ |
593 | 699 | public function getSearchResultLink($object): ?string; |
594 | 700 | |
595 | 701 | /** |
596 | 702 | * Setting to true will enable mosaic button for the admin screen. |
597 | 703 | * Setting to false will hide mosaic button for the admin screen. |
704 | + * @return void |
|
598 | 705 | */ |
599 | 706 | public function showMosaicButton(bool $isShown): void; |
600 | 707 |