1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- return array
- (
- 'update' => array
- (
- 'field' => array
- (
- 'name' => array
- (
- 'type' => 'textarea',
- 'autosize' => array('minRows' => 2),
- ),
- 'key' => array
- (
- 'type' => 'textarea',
- 'autosize' => array('minRows' => 2),
- ),
- 'option' => array
- (
- 'type' => 'textarea',
- 'autosize' => array('minRows' => 2),
- ),
- 'type',
- 'match' => array
- (
- 'width' => '40',
- 'type' => 'switch',
- 'show' => '{match}',
- 'active_value' => 1,
- 'inactive_value' => 2,
- ),
- ),
- 'drag' => 'sort',
- ),
- );
|