class-acf-location-comment.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. if ( ! defined( 'ABSPATH' ) ) {
  3. exit; // Exit if accessed directly
  4. }
  5. if ( ! class_exists( 'ACF_Location_Comment' ) ) :
  6. class ACF_Location_Comment extends ACF_Location {
  7. /**
  8. * Initializes props.
  9. *
  10. * @date 5/03/2014
  11. * @since 5.0.0
  12. *
  13. * @param void
  14. * @return void
  15. */
  16. public function initialize() {
  17. $this->name = 'comment';
  18. $this->label = __( 'Comment', 'acf' );
  19. $this->category = 'forms';
  20. $this->object_type = 'comment';
  21. }
  22. /**
  23. * Matches the provided rule against the screen args returning a bool result.
  24. *
  25. * @date 9/4/20
  26. * @since 5.9.0
  27. *
  28. * @param array $rule The location rule.
  29. * @param array $screen The screen args.
  30. * @param array $field_group The field group settings.
  31. * @return bool
  32. */
  33. public function match( $rule, $screen, $field_group ) {
  34. // Check screen args.
  35. if ( isset( $screen['comment'] ) ) {
  36. $comment = $screen['comment'];
  37. } else {
  38. return false;
  39. }
  40. return $this->compare_to_rule( $comment, $rule );
  41. }
  42. /**
  43. * Returns an array of possible values for this rule type.
  44. *
  45. * @date 9/4/20
  46. * @since 5.9.0
  47. *
  48. * @param array $rule A location rule.
  49. * @return array
  50. */
  51. public function get_values( $rule ) {
  52. return array_merge(
  53. array(
  54. 'all' => __( 'All', 'acf' ),
  55. ),
  56. acf_get_pretty_post_types() // Todo: Change to post types that support comments.
  57. );
  58. }
  59. }
  60. // Register.
  61. acf_register_location_type( 'ACF_Location_Comment' );
  62. endif; // class_exists check