File "ACF.php"

Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/SmartSlider3/Platform/WordPress/Integration/ACF/ACF.php
File size: 519 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Nextend\SmartSlider3\Platform\WordPress\Integration\ACF;

class ACF {

    public function __construct() {

        if (class_exists('acf', false)) {

            add_action('acf/register_fields', array(
                $this,
                'registerFields'
            ));

            add_action('acf/include_fields', array(
                $this,
                'registerFields'
            ));

        }
    }

    public function registerFields() {

        new AcfFieldSmartSlider3();
    }
}