File "Base.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Tribe/Duplicate/Strategy/Base.php
File size: 476 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Class Tribe__Duplicate__Strategy__Base
*
* The common root for duplicate finding strategies.
*
* @since 4.6
*/
abstract class Tribe__Duplicate__Strategy__Base {
/**
* Whether the key identifies a numerice post field or not.
*
* @param string $key
*
* @return bool
*
* @since 4.6
*/
protected function is_a_numeric_post_field( $key ) {
return in_array( $key, [ 'ID', 'post_author', 'post_parent', 'menu_order', 'comment_count' ] );
}
}