123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- if ( ! defined( 'ABSPATH' ) ) {
- exit;
- }
- if ( ! class_exists( 'ACF_Location_Page_Parent' ) ) :
- class ACF_Location_Page_Parent extends ACF_Location {
-
- public function initialize() {
- $this->name = 'page_parent';
- $this->label = __( 'Page Parent', 'acf' );
- $this->category = 'page';
- $this->object_type = 'post';
- $this->object_subtype = 'page';
- }
-
- public function match( $rule, $screen, $field_group ) {
-
- if ( isset( $screen['page_parent'] ) ) {
- $page_parent = $screen['page_parent'];
- } elseif ( isset( $screen['post_id'] ) ) {
- $post = get_post( $screen['post_id'] );
- $page_parent = $post ? $post->post_parent : false;
- } else {
- return false;
- }
-
- return $this->compare_to_rule( $page_parent, $rule );
- }
-
- public function get_values( $rule ) {
- return acf_get_location_type( 'page' )->get_values( $rule );
- }
- }
-
- acf_register_location_type( 'ACF_Location_Page_Parent' );
- endif;
|