| 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 |
} |