admin
1 year ago
fields
1 year ago
locations
1 year ago
post-types
1 year ago
README.md
1 year ago
acf-pro.php
1 year ago
acf-ui-options-page-functions.php
1 year ago
blocks-auto-inline-editing.php
6 months ago
blocks.php
1 year ago
options-page.php
1 year ago
acf-pro.php
23 lines
| 1 | <?php // phpcs:disable PEAR.NamingConventions.ValidClassName |
| 2 | /** |
| 3 | * The former ACF Pro class file. |
| 4 | * |
| 5 | * Remains, for now, in case anything checks for the existence of this class. |
| 6 | * |
| 7 | * @package wordpress/secure-custom-fields |
| 8 | */ |
| 9 | |
| 10 | if ( ! class_exists( 'acf_pro' ) ) : |
| 11 | /** |
| 12 | * The main ACF PRO class. |
| 13 | */ |
| 14 | class acf_pro { |
| 15 | /** |
| 16 | * Empty constructor. |
| 17 | */ |
| 18 | public function __construct() { |
| 19 | } |
| 20 | } |
| 21 | // end class |
| 22 | endif; |
| 23 |