golden hour
/var/www/html/wp-content/plugins/the-events-calendar/common/src/Tribe/Duplicate/Strategy
⬆️ Go Up
Upload
File/Folder
Size
Actions
Base.php
476 B
Del
OK
Interface.php
680 B
Del
OK
Like.php
2.11 KB
Del
OK
Same.php
1.13 KB
Del
OK
Edit: Base.php
<?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' ] ); } }
Save