<?php
/**
 * Register ACF Fields for Step Layout Block
 */

add_action('acf/init', function() {
    if( function_exists('acf_add_local_field_group') ) {
        acf_add_local_field_group(array(
            'key' => 'group_bw_step_layout',
            'title' => 'Step Layout Settings',
            'fields' => array(
                array(
                    'key' => 'field_bw_step_direction',
                    'label' => 'Step Direction',
                    'name' => 'step_direction',
                    'type' => 'radio',
                    'choices' => array(
                        'low-to-high' => 'Low to High (Left to Right)',
                        'high-to-low' => 'High to Low (Left to Right)',
                    ),
                    'default_value' => 'low-to-high',
                    'layout' => 'horizontal',
                ),
                // Card 1
                array(
                    'key' => 'field_bw_card1_tab',
                    'label' => 'Card 1',
                    'type' => 'tab',
                ),
                array(
                    'key' => 'field_bw_card1_image',
                    'label' => 'Background Image',
                    'name' => 'card_1_image',
                    'type' => 'image',
                    'return_format' => 'array',
                    'preview_size' => 'medium',
                ),
                array(
                    'key' => 'field_bw_card1_title',
                    'label' => 'Title',
                    'name' => 'card_1_title',
                    'type' => 'text',
                    'default_value' => 'Dining',
                ),
                array(
                    'key' => 'field_bw_card1_description',
                    'label' => 'Description',
                    'name' => 'card_1_description',
                    'type' => 'textarea',
                    'rows' => 3,
                    'default_value' => 'Hartling Group Resorts showcase the very best in Turks and Caicos restaurant experiences.',
                ),
                array(
                    'key' => 'field_bw_card1_button_text',
                    'label' => 'Button Text',
                    'name' => 'card_1_button_text',
                    'type' => 'text',
                    'default_value' => 'DISCOVER MORE',
                ),
                array(
                    'key' => 'field_bw_card1_button_url',
                    'label' => 'Button URL',
                    'name' => 'card_1_button_url',
                    'type' => 'url',
                    'default_value' => '#',
                ),
                // Card 2
                array(
                    'key' => 'field_bw_card2_tab',
                    'label' => 'Card 2',
                    'type' => 'tab',
                ),
                array(
                    'key' => 'field_bw_card2_image',
                    'label' => 'Background Image',
                    'name' => 'card_2_image',
                    'type' => 'image',
                    'return_format' => 'array',
                    'preview_size' => 'medium',
                ),
                array(
                    'key' => 'field_bw_card2_title',
                    'label' => 'Title',
                    'name' => 'card_2_title',
                    'type' => 'text',
                    'default_value' => 'Retail & Spa',
                ),
                array(
                    'key' => 'field_bw_card2_description',
                    'label' => 'Description',
                    'name' => 'card_2_description',
                    'type' => 'textarea',
                    'rows' => 3,
                    'default_value' => 'Each of the Hartling Group resorts comes complete with exceptional, on-site shopping opportunities.',
                ),
                array(
                    'key' => 'field_bw_card2_button_text',
                    'label' => 'Button Text',
                    'name' => 'card_2_button_text',
                    'type' => 'text',
                    'default_value' => 'EXPLORE',
                ),
                array(
                    'key' => 'field_bw_card2_button_url',
                    'label' => 'Button URL',
                    'name' => 'card_2_button_url',
                    'type' => 'url',
                    'default_value' => '#',
                ),
                // Card 3
                array(
                    'key' => 'field_bw_card3_tab',
                    'label' => 'Card 3',
                    'type' => 'tab',
                ),
                array(
                    'key' => 'field_bw_card3_image',
                    'label' => 'Background Image',
                    'name' => 'card_3_image',
                    'type' => 'image',
                    'return_format' => 'array',
                    'preview_size' => 'medium',
                ),
                array(
                    'key' => 'field_bw_card3_title',
                    'label' => 'Title',
                    'name' => 'card_3_title',
                    'type' => 'text',
                    'default_value' => 'PRIVE Fine Ocean Charters',
                ),
                array(
                    'key' => 'field_bw_card3_description',
                    'label' => 'Description',
                    'name' => 'card_3_description',
                    'type' => 'textarea',
                    'rows' => 3,
                    'default_value' => 'Offering a variety of exclusive services like offshore fishing, romantic beach getaways and diving.',
                ),
                array(
                    'key' => 'field_bw_card3_button_text',
                    'label' => 'Button Text',
                    'name' => 'card_3_button_text',
                    'type' => 'text',
                    'default_value' => 'LEARN MORE',
                ),
                array(
                    'key' => 'field_bw_card3_button_url',
                    'label' => 'Button URL',
                    'name' => 'card_3_button_url',
                    'type' => 'url',
                    'default_value' => '#',
                ),
            ),
            'location' => array(
                array(
                    array(
                        'param' => 'block',
                        'operator' => '==',
                        'value' => 'acf/bw-step-layout',
                    ),
                ),
            ),
            'menu_order' => 0,
            'position' => 'normal',
            'style' => 'default',
            'label_placement' => 'top',
            'instruction_placement' => 'label',
        ));
    }
});