name = __( 'Section Break', 'wp-user-frontend' );
$this->input_type = 'section_break';
$this->icon = 'columns';
}
/**
* Render the Section Break field
*
* @param array $field_settings
* @param int $form_id
* @param string $type
* @param int $post_id
*
* @return void
*/
public function render( $field_settings, $form_id, $type = 'post', $post_id = null ) {
$field_settings['name'] = isset( $field_settings['name'] ) ? $field_settings['name'] : $this->input_type;
$field_settings['description'] = isset( $field_settings['description'] ) ? $field_settings['description'] : ''; ?>
print_list_attributes( $field_settings ); ?>>
'label',
'title' => __( 'Title', 'wp-user-frontend' ),
'type' => 'text',
'section' => 'basic',
'priority' => 10,
'help_text' => __( 'Title of the section', 'wp-user-frontend' ),
],
[
'name' => 'description',
'title' => __( 'Description', 'wp-user-frontend' ),
'type' => 'textarea',
'section' => 'basic',
'priority' => 12,
'help_text' => __( 'Some details text about the section', 'wp-user-frontend' ),
],
];
return $options;
}
/**
* Get the field props
*
* @return array
*/
public function get_field_props() {
$props = [
'input_type' => 'section_break',
'template' => $this->get_type(),
'label' => $this->get_name(),
'description' => __( 'Some description about this section', 'wp-user-frontend' ),
'id' => 0,
'is_new' => true,
'show_in_post' => 'yes',
'hide_field_label' => 'no',
'wpuf_cond' => null,
];
return $props;
}
}