60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* ACF (Advanced Custom Fields) support class & functions
|
|
*
|
|
* @package BasicWP
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
namespace BasicWP;
|
|
|
|
/**
|
|
* Class ACF
|
|
*
|
|
* This class serves as a wrapper or utility for handling Advanced Custom Fields (ACF) functionality.
|
|
* It is part of the Basic-WP project and is located in the `lib` directory.
|
|
*
|
|
* @package Basic-WP
|
|
*/
|
|
class ACF {
|
|
/**
|
|
* Variable to hold the file path.
|
|
*
|
|
* @var string $path The file path associated with the class.
|
|
*/
|
|
public $path;
|
|
|
|
/** Constructor.
|
|
*
|
|
* This constructor initializes the class by setting the file path and
|
|
* adding filters for loading and saving JSON files related to ACF.
|
|
*/
|
|
public function __construct() {
|
|
$this->path = get_stylesheet_directory() . '/acf';
|
|
add_filter( 'acf/settings/load_json', array( $this, 'loadJson' ) );
|
|
add_filter( 'acf/settings/save_json', array( $this, 'saveJson' ) );
|
|
}
|
|
|
|
/** Save JSON.
|
|
*
|
|
* @param mixed $path The path to save the JSON file.
|
|
*/
|
|
// phpcs:ignore
|
|
public function saveJson( $path ) {
|
|
return $this->path;
|
|
}
|
|
|
|
/** Load JSON.
|
|
*
|
|
* @param mixed $paths The paths to load the JSON file.
|
|
*/
|
|
// phpcs:ignore
|
|
public function loadJson( $paths ) {
|
|
return array( $this->path );
|
|
}
|
|
}
|
|
|
|
if ( function_exists( 'get_fields' ) ) {
|
|
$acfInstance = new ACF();
|
|
}
|