File "instructions.php"

Full Path: /home/comaria/perform-evolution/acf-extended/includes/fields-settings/instructions.php
File size: 2.14 KB
MIME-type: text/x-php
Charset: utf-8

<?php

if(!defined('ABSPATH')){
    exit;
}

if(!class_exists('acfe_instructions')):

class acfe_instructions{
    
    function __construct(){
    
        add_action('acfe/pre_render_field_group',   array($this, 'pre_render_field_group'), 10, 3);
        add_filter('acf/field_wrapper_attributes',  array($this, 'field_wrapper_attributes'), 10, 2);
        
    }
    
    
    /**
     * pre_render_field_group
     *
     * @param $field_group
     * @param $fields
     * @param $post_id
     *
     * @return void
     */
    function pre_render_field_group($field_group, $fields, $post_id){
        
        // bail early on override (acfe_form)
        if(acf_is_filter_enabled('acfe/override_instruction')){
            return;
        }
        
        acf_disable_filter('acfe/instruction_tooltip');
        acf_disable_filter('acfe/instruction_above_field');
        
        if(acf_maybe_get($field_group, 'instruction_placement') === 'tooltip'){
            
            acf_enable_filter('acfe/instruction_tooltip');
            
        }elseif(acf_maybe_get($field_group, 'instruction_placement') === 'above_field'){
            
            acf_enable_filter('acfe/instruction_above_field');
            
        }
        
    }
    
    
    /**
     * field_wrapper_attributes
     *
     * @param $wrapper
     * @param $field
     *
     * @return mixed
     */
    function field_wrapper_attributes($wrapper, $field){
        
        if(!acf_maybe_get($field, 'label')){
            $wrapper['class'] .= ' acfe-no-label';
        }
        
        if(acf_maybe_get($field, 'instructions')){
            
            if(acf_is_filter_enabled('acfe/instruction_tooltip')){
                $wrapper['data-instruction-tooltip'] = acf_esc_html($field['instructions']);
                
            }elseif(acf_is_filter_enabled('acfe/instruction_above_field')){
                $wrapper['data-instruction-above-field'] = acf_esc_html($field['instructions']);
            }
            
        }
        
        return $wrapper;
        
    }
    
}

new acfe_instructions();

endif;