settings = array( 'version' => '1.0.0', 'url' => plugin_dir_url( __FILE__ ), 'path' => plugin_dir_path( __FILE__ ) ); // include field add_action('acf/include_field_types', array($this, 'include_field')); // v5 add_action('acf/register_fields', array($this, 'include_field')); // v4 } /* * include_field * * This function will include the field type class * * @type function * @date 17/02/2016 * @since 1.0.0 * * @param $version (int) major ACF version. Defaults to false * @return void */ function include_field( $version = false ) { // support empty $version // if( !$version ) $version = 4; // load textdomain load_plugin_textdomain( 'mapster_acf_plugin_map', false, plugin_basename( dirname( __FILE__ ) ) . '/lang' ); // include include_once('fields/class-mapster-acf-field-map-v5.php'); } } // initialize new mapster_acf_plugin_map(); // class_exists check endif; ?>