Advertisement
Guest User

Arif

a guest
Jan 21st, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.95 KB | None | 0 0
  1. $prefix = 'goalkick_';
  2. array(
  3.             'id'     => "{$prefix}league_point_table_option",
  4.             'type'   => 'group',
  5.             'clone'       => true,
  6.             'sort_clone'  => true,
  7.             'collapsible' => true,
  8.             'group_title' =>array('field'=>'goalkick_league_point_table_team_manual,goalkick_league_point_table_team_auto','separator'=>'=>'),
  9.             'save_state' => true,
  10.             'columns'           => 12,
  11.                     // Sub-fields
  12.             'fields' => array(
  13.                
  14.  
  15.                 array(
  16.                     'name'              => __( 'Teams', 'goalkick' ),
  17.                     'id'                => "{$prefix}league_point_table_team_manual",
  18.                     'type'              => 'text',
  19.                     'columns'           => 4,
  20.                 ),
  21.                 array(
  22.                     'name'              => __( 'Match Played', 'goalkick' ),
  23.                     'id'                => "{$prefix}league_standing_match_played_manual",
  24.                     'type'              => 'text',
  25.                     'columns'           => 2,
  26.                     'std'               => '0',
  27.                 ),
  28.                 array(
  29.                     'name'              => __( 'Win', 'goalkick' ),
  30.                     'id'                => "{$prefix}league_standing_match_win_manual",
  31.                     'type'              => 'text',
  32.                     'columns'           => 1,
  33.                     'std'               => '0',
  34.                 ),
  35.                 array(
  36.                     'name'              => __( 'Loss', 'goalkick' ),
  37.                     'id'                => "{$prefix}league_standing_match_loss_manual",
  38.                     'type'              => 'text',
  39.                     'columns'           => 1,
  40.                     'std'               => '0',
  41.                 ),
  42.                 array(
  43.                     'name'              => __( 'Goal Scored', 'goalkick' ),
  44.                     'id'                => "{$prefix}league_standing_goal_scored_manual",
  45.                     'type'              => 'text',
  46.                     'columns'           => 2,
  47.                     'std'               => '0',
  48.                 ),
  49.                 array(
  50.                     'name'              => __( 'Goal Concided', 'goalkick' ),
  51.                     'id'                => "{$prefix}league_standing_goal_concided_manual",
  52.                     'type'              => 'text',
  53.                     'columns'           => 2,
  54.                     'std'               => '0',
  55.                 ),
  56.             ),
  57. ),
  58. array(
  59.     'name'              => __( 'League Point Table Notes', 'goalkick' ),
  60.     'type'              => 'heading',
  61.     'columns'           => 12,
  62. ),
  63. array(
  64.     'id'                => "{$prefix}league_point_table_notes",
  65.     'type'              => 'wysiwyg',
  66. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement