PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / 6.4.0-beta2
Secure Custom Fields v6.4.0-beta2
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 / locations / class-acf-location-post.php
secure-custom-fields / includes / locations Last commit date
abstract-acf-legacy-location.php 1 year ago abstract-acf-location.php 1 year ago class-acf-location-attachment.php 1 year ago class-acf-location-comment.php 1 year ago class-acf-location-current-user-role.php 1 year ago class-acf-location-current-user.php 1 year ago class-acf-location-nav-menu-item.php 1 year ago class-acf-location-nav-menu.php 1 year ago class-acf-location-page-parent.php 1 year ago class-acf-location-page-template.php 1 year ago class-acf-location-page-type.php 1 year ago class-acf-location-page.php 1 year ago class-acf-location-post-category.php 1 year ago class-acf-location-post-format.php 1 year ago class-acf-location-post-status.php 1 year ago class-acf-location-post-taxonomy.php 1 year ago class-acf-location-post-template.php 1 year ago class-acf-location-post-type.php 1 year ago class-acf-location-post.php 1 year ago class-acf-location-taxonomy.php 1 year ago class-acf-location-user-form.php 1 year ago class-acf-location-user-role.php 1 year ago class-acf-location-widget.php 1 year ago index.php 1 year ago
class-acf-location-post.php
94 lines
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit; // Exit if accessed directly
5 }
6
7 if ( ! class_exists( 'ACF_Location_Post' ) ) :
8
9 class ACF_Location_Post extends ACF_Location {
10
11 /**
12 * Initializes props.
13 *
14 * @date 5/03/2014
15 * @since 5.0.0
16 *
17 * @param void
18 * @return void
19 */
20 public function initialize() {
21 $this->name = 'post';
22 $this->label = __( 'Post', 'acf' );
23 $this->category = 'post';
24 $this->object_type = 'post';
25 }
26
27 /**
28 * Matches the provided rule against the screen args returning a bool result.
29 *
30 * @date 9/4/20
31 * @since 5.9.0
32 *
33 * @param array $rule The location rule.
34 * @param array $screen The screen args.
35 * @param array $field_group The field group settings.
36 * @return boolean
37 */
38 public function match( $rule, $screen, $field_group ) {
39
40 // Check screen args.
41 if ( isset( $screen['post_id'] ) ) {
42 $post_id = $screen['post_id'];
43 } else {
44 return false;
45 }
46
47 // Compare rule against post_id.
48 return $this->compare_to_rule( $post_id, $rule );
49 }
50
51 /**
52 * Returns an array of possible values for this rule type.
53 *
54 * @date 9/4/20
55 * @since 5.9.0
56 *
57 * @param array $rule A location rule.
58 * @return array
59 */
60 public function get_values( $rule ) {
61 $choices = array();
62
63 // Get post types.
64 $post_types = acf_get_post_types(
65 array(
66 'show_ui' => 1,
67 'exclude' => array( 'page', 'attachment' ),
68 )
69 );
70
71 // Get grouped posts.
72 $groups = acf_get_grouped_posts(
73 array(
74 'post_type' => $post_types,
75 )
76 );
77
78 // Append to choices.
79 if ( $groups ) {
80 foreach ( $groups as $label => $posts ) {
81 $choices[ $label ] = array();
82 foreach ( $posts as $post ) {
83 $choices[ $label ][ $post->ID ] = acf_get_post_title( $post );
84 }
85 }
86 }
87 return $choices;
88 }
89 }
90
91 // initialize
92 acf_register_location_type( 'ACF_Location_Post' );
93 endif; // class_exists check
94