Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- return [
- 'table' => [
- 'type' => 'table',
- 'value' => false,
- 'cols' => [
- 'id' => [
- 'title' => 'id',
- 'attr' => 'style="width: 40px; max-width: 40px"'
- ],
- 'head' => [
- 'title' => 'Наименование'
- ],
- 'price' => [
- 'title' => 'Стоимость'
- ]
- ],
- 'items' => [
- 'tbody' => [
- 'type' => 'row',
- 'items' => [
- 'id' => [
- 'autoincrement' => true,
- 'attr' => 'style="width: 40px; max-width: 40px"',
- ],
- 'head' => [
- 'type' => 'text',
- ],
- 'price' => [
- 'type' => 'text'
- ]
- ]
- ]
- ]
- ],
- 'group' => [
- 'type' => 'group',
- 'title' => 'Группа цен',
- 'placeholder' => 'Название группы',
- 'templates' => ['table']
- ]
- ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement