Fix reorder error from admin
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Attribute.php 566B

il y a 1 an
il y a 1 an
il y a 1 an
12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Baldarian\AdminReorder\Rewrite\Magento\Eav\Model;
  8. class Attribute extends \Magento\Eav\Model\Attribute
  9. {
  10. /**
  11. * Return forms in which the attribute
  12. *
  13. * @return array
  14. */
  15. public function getUsedInForms()
  16. {
  17. $forms = $this->getData('used_in_forms');
  18. if ($forms === null) {
  19. $forms = [];
  20. $this->setData('used_in_forms', $forms);
  21. }
  22. return $forms;
  23. }
  24. }