CLI.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package ACF |
| 4 | * @author WP Engine |
| 5 | * |
| 6 | * © 2026 Advanced Custom Fields (ACF®). All rights reserved. |
| 7 | * "ACF" is a trademark of WP Engine. |
| 8 | * Licensed under the GNU General Public License v2 or later. |
| 9 | * https://www.gnu.org/licenses/gpl-2.0.html |
| 10 | */ |
| 11 | |
| 12 | namespace ACF\CLI; |
| 13 | |
| 14 | // Exit if accessed directly. |
| 15 | defined( 'ABSPATH' ) || exit; |
| 16 | |
| 17 | /** |
| 18 | * Bootstrapper for ACF WP-CLI commands. |
| 19 | */ |
| 20 | class CLI { |
| 21 | |
| 22 | /** |
| 23 | * Registers all free ACF WP-CLI commands. |
| 24 | * |
| 25 | * @since 6.8 |
| 26 | */ |
| 27 | public function __construct() { |
| 28 | \WP_CLI::add_command( 'acf json', JsonCommand::class ); |
| 29 | } |
| 30 | } |
| 31 |