PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / trunk
Secure Custom Fields vtrunk
6.9.1 6.9.0 6.8.9 6.8.7 6.8.8 6.8.6 6.8.4 6.8.5 trunk 6.4.0-beta1 6.4.0-beta2 6.4.1 6.4.1-beta3 6.4.1-beta4 6.4.1-beta5 6.4.1-beta6 6.4.1-beta7 6.4.2 6.5.0 6.5.1 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6 6.5.7 6.6.0 6.7.0 6.7.1 6.8.0 6.8.1 6.8.2 6.8.3
secure-custom-fields / pro / acf-pro.php
secure-custom-fields / pro Last commit date
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