123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
- /**
- *
- * Field: group
- *
- * @since 1.0.0
- * @version 1.0.0
- *
- */
- if ( ! class_exists( 'CSF_Field_group' ) ) {
- class CSF_Field_group extends CSF_Fields {
- public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
- parent::__construct( $field, $value, $unique, $where, $parent );
- }
- public function render() {
- $args = wp_parse_args( $this->field, array(
- 'max' => 0,
- 'min' => 0,
- 'fields' => array(),
- 'button_title' => esc_html__( 'Add New', 'sakurairo_csf' ),
- 'accordion_title_prefix' => '',
- 'accordion_title_number' => false,
- 'accordion_title_auto' => true,
- 'accordion_title_by' => array(),
- 'accordion_title_by_prefix' => ' ',
- ) );
- $title_prefix = ( ! empty( $args['accordion_title_prefix'] ) ) ? $args['accordion_title_prefix'] : '';
- $title_number = ( ! empty( $args['accordion_title_number'] ) ) ? true : false;
- $title_auto = ( ! empty( $args['accordion_title_auto'] ) ) ? true : false;
- $title_first = ( isset( $this->field['fields'][0]['id'] ) ) ? $this->field['fields'][0]['id'] : $this->field['fields'][1]['id'];
- $title_by = ( is_array( $args['accordion_title_by'] ) ) ? $args['accordion_title_by'] : (array) $args['accordion_title_by'];
- $title_by = ( empty( $title_by ) ) ? array( $title_first ) : $title_by;
- $title_by_prefix = ( ! empty( $args['accordion_title_by_prefix'] ) ) ? $args['accordion_title_by_prefix'] : '';
- if ( preg_match( '/'. preg_quote( '['. $this->field['id'] .']' ) .'/', $this->unique ) ) {
- echo '<div class="csf-notice csf-notice-danger">'. esc_html__( 'Error: Field ID conflict.', 'sakurairo_csf' ) .'</div>';
- } else {
- echo $this->field_before();
- echo '<div class="csf-cloneable-item csf-cloneable-hidden" data-depend-id="'. esc_attr( $this->field['id'] ) .'">';
- echo '<div class="csf-cloneable-helper">';
- echo '<i class="csf-cloneable-sort fas fa-arrows-alt"></i>';
- echo '<i class="csf-cloneable-clone far fa-clone"></i>';
- echo '<i class="csf-cloneable-remove csf-confirm fas fa-times" data-confirm="'. esc_html__( 'Are you sure to delete this item?', 'sakurairo_csf' ) .'"></i>';
- echo '</div>';
- echo '<h4 class="csf-cloneable-title">';
- echo '<span class="csf-cloneable-text">';
- echo ( $title_number ) ? '<span class="csf-cloneable-title-number"></span>' : '';
- echo ( $title_prefix ) ? '<span class="csf-cloneable-title-prefix">'. esc_attr( $title_prefix ) .'</span>' : '';
- echo ( $title_auto ) ? '<span class="csf-cloneable-value"><span class="csf-cloneable-placeholder"></span></span>' : '';
- echo '</span>';
- echo '</h4>';
- echo '<div class="csf-cloneable-content">';
- foreach ( $this->field['fields'] as $field ) {
- $field_default = ( isset( $field['default'] ) ) ? $field['default'] : '';
- $field_unique = ( ! empty( $this->unique ) ) ? $this->unique .'['. $this->field['id'] .'][0]' : $this->field['id'] .'[0]';
- Sakurairo_CSF::field( $field, $field_default, '___'. $field_unique, 'field/group' );
- }
- echo '</div>';
- echo '</div>';
- echo '<div class="csf-cloneable-wrapper csf-data-wrapper" data-title-by="'. esc_attr( json_encode( $title_by ) ) .'" data-title-by-prefix="'. esc_attr( $title_by_prefix ) .'" data-title-number="'. esc_attr( $title_number ) .'" data-field-id="['. esc_attr( $this->field['id'] ) .']" data-max="'. esc_attr( $args['max'] ) .'" data-min="'. esc_attr( $args['min'] ) .'">';
- if ( ! empty( $this->value ) ) {
- $num = 0;
- foreach ( $this->value as $value ) {
- $title = '';
- if ( ! empty( $title_by ) ) {
- $titles = array();
- foreach ( $title_by as $title_key ) {
- if ( isset( $value[ $title_key ] ) ) {
- $titles[] = $value[ $title_key ];
- }
- }
- $title = join( $title_by_prefix, $titles );
- }
- $title = ( is_array( $title ) ) ? reset( $title ) : $title;
- echo '<div class="csf-cloneable-item">';
- echo '<div class="csf-cloneable-helper">';
- echo '<i class="csf-cloneable-sort fas fa-arrows-alt"></i>';
- echo '<i class="csf-cloneable-clone far fa-clone"></i>';
- echo '<i class="csf-cloneable-remove csf-confirm fas fa-times" data-confirm="'. esc_html__( 'Are you sure to delete this item?', 'sakurairo_csf' ) .'"></i>';
- echo '</div>';
- echo '<h4 class="csf-cloneable-title">';
- echo '<span class="csf-cloneable-text">';
- echo ( $title_number ) ? '<span class="csf-cloneable-title-number">'. esc_attr( $num+1 ) .'.</span>' : '';
- echo ( $title_prefix ) ? '<span class="csf-cloneable-title-prefix">'. esc_attr( $title_prefix ) .'</span>' : '';
- echo ( $title_auto ) ? '<span class="csf-cloneable-value">' . esc_attr( $title ) .'</span>' : '';
- echo '</span>';
- echo '</h4>';
- echo '<div class="csf-cloneable-content">';
- foreach ( $this->field['fields'] as $field ) {
- $field_unique = ( ! empty( $this->unique ) ) ? $this->unique .'['. $this->field['id'] .']['. $num .']' : $this->field['id'] .'['. $num .']';
- $field_value = ( isset( $field['id'] ) && isset( $value[$field['id']] ) ) ? $value[$field['id']] : '';
- Sakurairo_CSF::field( $field, $field_value, $field_unique, 'field/group' );
- }
- echo '</div>';
- echo '</div>';
- $num++;
- }
- }
- echo '</div>';
- echo '<div class="csf-cloneable-alert csf-cloneable-max">'. esc_html__( 'You cannot add more.', 'sakurairo_csf' ) .'</div>';
- echo '<div class="csf-cloneable-alert csf-cloneable-min">'. esc_html__( 'You cannot remove more.', 'sakurairo_csf' ) .'</div>';
- echo '<a href="#" class="button button-primary csf-cloneable-add">'. $args['button_title'] .'</a>';
- echo $this->field_after();
- }
- }
- public function enqueue() {
- if ( ! wp_script_is( 'jquery-ui-accordion' ) ) {
- wp_enqueue_script( 'jquery-ui-accordion' );
- }
- if ( ! wp_script_is( 'jquery-ui-sortable' ) ) {
- wp_enqueue_script( 'jquery-ui-sortable' );
- }
- }
- }
- }
|