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-block.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-options-page.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-widget.php
78 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; // Exit if accessed directly |
| 5 | } |
| 6 | |
| 7 | if ( ! class_exists( 'ACF_Location_Widget' ) ) : |
| 8 | |
| 9 | class ACF_Location_Widget extends ACF_Location { |
| 10 | |
| 11 | /** |
| 12 | * Initializes props. |
| 13 | * |
| 14 | * @date 5/03/2014 |
| 15 | * @since ACF 5.0.0 |
| 16 | * |
| 17 | * @return void |
| 18 | */ |
| 19 | public function initialize() { |
| 20 | $this->name = 'widget'; |
| 21 | $this->label = __( 'Widget', 'secure-custom-fields' ); |
| 22 | $this->category = 'forms'; |
| 23 | $this->object_type = 'widget'; |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Matches the provided rule against the screen args returning a bool result. |
| 28 | * |
| 29 | * @date 9/4/20 |
| 30 | * @since ACF 5.9.0 |
| 31 | * |
| 32 | * @param array $rule The location rule. |
| 33 | * @param array $screen The screen args. |
| 34 | * @param array $field_group The field group settings. |
| 35 | * @return boolean |
| 36 | */ |
| 37 | public function match( $rule, $screen, $field_group ) { |
| 38 | |
| 39 | // Check screen args. |
| 40 | if ( isset( $screen['widget'] ) ) { |
| 41 | $widget = $screen['widget']; |
| 42 | } else { |
| 43 | return false; |
| 44 | } |
| 45 | |
| 46 | // Compare rule against $widget. |
| 47 | return $this->compare_to_rule( $widget, $rule ); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Returns an array of possible values for this rule type. |
| 52 | * |
| 53 | * @date 9/4/20 |
| 54 | * @since ACF 5.9.0 |
| 55 | * |
| 56 | * @param array $rule A location rule. |
| 57 | * @return array |
| 58 | */ |
| 59 | public function get_values( $rule ) { |
| 60 | global $wp_widget_factory; |
| 61 | |
| 62 | // Populate choices. |
| 63 | $choices = array( |
| 64 | 'all' => __( 'All', 'secure-custom-fields' ), |
| 65 | ); |
| 66 | if ( $wp_widget_factory->widgets ) { |
| 67 | foreach ( $wp_widget_factory->widgets as $widget ) { |
| 68 | $choices[ $widget->id_base ] = $widget->name; |
| 69 | } |
| 70 | } |
| 71 | return $choices; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | // initialize |
| 76 | acf_register_location_type( 'ACF_Location_Widget' ); |
| 77 | endif; // class_exists check |
| 78 |