PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / 6.9.1
Secure Custom Fields v6.9.1
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 / includes / abilities / class-scf-post-type-abilities.php
secure-custom-fields / includes / abilities Last commit date
class-scf-abilities-integration.php 6 months ago class-scf-field-abilities.php 1 week ago class-scf-field-group-abilities.php 6 months ago class-scf-internal-post-type-abilities.php 1 week ago class-scf-post-type-abilities.php 7 months ago class-scf-taxonomy-abilities.php 7 months ago class-scf-ui-options-page-abilities.php 6 months ago
class-scf-post-type-abilities.php
41 lines
1 <?php
2 /**
3 * SCF Post Type Abilities
4 *
5 * Handles WordPress Abilities API registration for SCF post type management.
6 *
7 * @package wordpress/secure-custom-fields
8 * @since 6.6.0
9 */
10
11 // Exit if accessed directly.
12 if ( ! defined( 'ABSPATH' ) ) {
13 exit;
14 }
15
16 if ( ! class_exists( 'SCF_Post_Type_Abilities' ) ) :
17
18 /**
19 * SCF Post Type Abilities class.
20 *
21 * Registers and handles all post type management abilities for the
22 * WordPress Abilities API integration. Provides programmatic access
23 * to SCF post type operations.
24 *
25 * @since 6.6.0
26 */
27 class SCF_Post_Type_Abilities extends SCF_Internal_Post_Type_Abilities {
28
29 /**
30 * The internal post type identifier.
31 *
32 * @var string
33 */
34 protected $internal_post_type = 'acf-post-type';
35 }
36
37 // Initialize abilities instance.
38 acf_new_instance( 'SCF_Post_Type_Abilities' );
39
40 endif; // class_exists check.
41