Submit
Path:
~
/
home
/
getwphos
/
public_html
/
BenjaminMarc2023
/
wp-content
/
plugins
/
dsn_acf_pro
/
includes
/
locations
/
File Content:
class-acf-location-post.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if ( ! class_exists( 'ACF_Location_Post' ) ) : class ACF_Location_Post extends ACF_Location { /** * Initializes props. * * @date 5/03/2014 * @since 5.0.0 * * @param void * @return void */ public function initialize() { $this->name = 'post'; $this->label = __( 'Post', 'acf' ); $this->category = 'post'; $this->object_type = 'post'; } /** * Matches the provided rule against the screen args returning a bool result. * * @date 9/4/20 * @since 5.9.0 * * @param array $rule The location rule. * @param array $screen The screen args. * @param array $field_group The field group settings. * @return bool */ public function match( $rule, $screen, $field_group ) { // Check screen args. if ( isset( $screen['post_id'] ) ) { $post_id = $screen['post_id']; } else { return false; } // Compare rule against post_id. return $this->compare_to_rule( $post_id, $rule ); } /** * Returns an array of possible values for this rule type. * * @date 9/4/20 * @since 5.9.0 * * @param array $rule A location rule. * @return array */ public function get_values( $rule ) { $choices = array(); // Get post types. $post_types = acf_get_post_types( array( 'show_ui' => 1, 'exclude' => array( 'page', 'attachment' ), ) ); // Get grouped posts. $groups = acf_get_grouped_posts( array( 'post_type' => $post_types, ) ); // Append to choices. if ( $groups ) { foreach ( $groups as $label => $posts ) { $choices[ $label ] = array(); foreach ( $posts as $post ) { $choices[ $label ][ $post->ID ] = acf_get_post_title( $post ); } } } return $choices; } } // initialize acf_register_location_type( 'ACF_Location_Post' ); endif; // class_exists check
Submit
FILE
FOLDER
Name
Size
Permission
Action
abstract-acf-legacy-location.php
1855 bytes
0644
abstract-acf-location.php
3696 bytes
0644
class-acf-location-attachment.php
2365 bytes
0644
class-acf-location-comment.php
1561 bytes
0644
class-acf-location-current-user-role.php
1893 bytes
0644
class-acf-location-current-user.php
1781 bytes
0644
class-acf-location-nav-menu-item.php
1722 bytes
0644
class-acf-location-nav-menu.php
2441 bytes
0644
class-acf-location-page-parent.php
1732 bytes
0644
class-acf-location-page-template.php
2191 bytes
0644
class-acf-location-page-type.php
2934 bytes
0644
class-acf-location-page.php
1683 bytes
0644
class-acf-location-post-category.php
1787 bytes
0644
class-acf-location-post-format.php
1875 bytes
0644
class-acf-location-post-status.php
1923 bytes
0644
class-acf-location-post-taxonomy.php
2898 bytes
0644
class-acf-location-post-template.php
3200 bytes
0644
class-acf-location-post-type.php
2119 bytes
0644
class-acf-location-post.php
1977 bytes
0644
class-acf-location-taxonomy.php
1877 bytes
0644
class-acf-location-user-form.php
1951 bytes
0644
class-acf-location-user-role.php
2008 bytes
0644
class-acf-location-widget.php
1717 bytes
0644
N4ST4R_ID | Naxtarrr