Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1.             array(
  2.                 'id'     => 'job_schedules',
  3.                 'type'   => 'group',
  4.                 'clone'  => true,
  5.                 'sort_clone' => true,
  6.                 'tab'   => 'schedules',
  7.  
  8.                 'fields' => array(
  9.                     array(
  10.                         'name' => __( 'Job Title', 'sw_xicon_language' ),
  11.                         'id'   => 'job_title',
  12.                         'type' => 'text',
  13.                         'columns' => 12,
  14.                     ),
  15.                     array(
  16.                         'name' => __( 'Start Date', 'sw_xicon_language' ),
  17.                         'id'   => 'start_date',
  18.                         'type' => 'date',
  19.                         'columns' => 6,
  20.                     ),
  21.                     array(
  22.                         'name' => __( 'End Date', 'sw_xicon_language' ),
  23.                         'id'   => 'end_date',
  24.                         'type' => 'date',
  25.                         'columns' => 6,
  26.                     ),
  27.                 ),
  28.             ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement