PluginProbe
FileBird – WordPress Media Library Folders & File Manager / 5.5
FileBird – WordPress Media Library Folders & File Manager v5.5
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 5.5, at includes/Support/ACF.php

21 lines 441 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
9 public function __construct() {
10 add_action( 'acf/include_field_types', array( $this, 'include_field' ) ); // v5
11 add_action( 'acf/register_fields', array( $this, 'include_field' ) ); // v4
12 }
13
14 public function include_field( $version = false ) {
15 if ( ! $version ) {
16 $version = 4;
17 }
18 include_once 'ACF/acf-field-filebird-v' . $version . '.php';
19 }
20 }
21