'menu_status', 'name' => 'param[status]', 'type' => 'checkbox', 'val' => isset( $param['status'] ) ? $param['status'] : 0, ); $status_help = array( 'text' => __( 'If check - the menu not displayed on the frontend. If uncheck - the menu will show on the frontend.', 'sticky-buttons' ), ); $test_mode = array( 'id' => 'test_mode', 'name' => 'param[test_mode]', 'type' => 'checkbox', 'val' => isset( $param['test_mode'] ) ? $param['test_mode'] : 0, ); $test_mode_help = array( 'text' => __( 'If test mode is enabled, the form will show for admin only.', 'sticky-buttons' ), ); $show_option = array( 'all' => __( 'All posts and pages', 'bubble-menu' ), 'shortecode' => __( 'Where shortcode is inserted', 'bubble-menu' ), ); $show = array( 'id' => 'show', 'name' => 'param[show]', 'type' => 'select', 'val' => isset( $param['show'] ) ? $param['show'] : 'all', 'option' => $show_option, 'func' => 'showchange(this);', 'sep' => 'p', ); $show_help = array( 'text' => __( 'Choose a condition to target to specific content.', 'bubble-menu' ), );