Advertisement
Guest User

Untitled

a guest
Oct 5th, 2020
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <?php
  2.  
  3. return [
  4. 'table' => [
  5. 'type' => 'table',
  6. 'value' => false,
  7. 'cols' => [
  8. 'id' => [
  9. 'title' => 'id',
  10. 'attr' => 'style="width: 40px; max-width: 40px"'
  11. ],
  12. 'head' => [
  13. 'title' => 'Наименование'
  14. ],
  15. 'price' => [
  16. 'title' => 'Стоимость'
  17. ]
  18. ],
  19. 'items' => [
  20. 'tbody' => [
  21. 'type' => 'row',
  22. 'items' => [
  23. 'id' => [
  24. 'autoincrement' => true,
  25. 'attr' => 'style="width: 40px; max-width: 40px"',
  26. ],
  27. 'head' => [
  28. 'type' => 'text',
  29. ],
  30. 'price' => [
  31. 'type' => 'text'
  32. ]
  33. ]
  34. ]
  35. ]
  36. ],
  37. 'group' => [
  38. 'type' => 'group',
  39. 'title' => 'Группа цен',
  40. 'placeholder' => 'Название группы',
  41. 'templates' => ['table']
  42. ]
  43. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement