PluginProbe
FileBird – WordPress Media Library Folders & File Manager / 6.3.4
FileBird – WordPress Media Library Folders & File Manager v6.3.4
6.5.8 6.5.7 6.5.5 6.5.4 trunk 4.3.1 5.1.6 5.3 5.3.2 5.4.3 5.4.4 5.4.5 5.5 5.5.3 5.5.5 5.5.8 5.5.8.1 5.6 5.6.1 5.6.2 5.6.3 5.6.4 6.2.3 6.2.5 6.3 All 36 releases
filebird / includes / Support / ACF.php

ACF.php in FileBird – WordPress Media Library Folders & File Manager 6.3.4, at includes/Support/ACF.php

19 lines 439 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace FileBird\Support;
4
5 defined( 'ABSPATH' ) || exit;
6
7 class ACF {
8 public function __construct() {
9 add_action( 'acf/include_field_types', array( $this, 'include_field' ) ); // v5
10 add_action( 'acf/register_fields', array( $this, 'include_field' ) ); // v4
11 }
12
13 public function include_field( $version = false ) {
14 if ( ! $version ) {
15 $version = 4;
16 }
17 include_once 'ACF/acf-field-filebird-v' . $version . '.php';
18 }
19 }