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