Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
the-events-calendar
/
common
/
src
/
Tribe
/
Duplicate
/
Strategy
:
Interface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Interface Tribe__Duplicate__Strategy__Interface * * The API implemented by each duplicate finding strategy. * * @since 4.6 */ interface Tribe__Duplicate__Strategy__Interface { /** * Returns a string suitable to be used as a WHERE clause in a SQL query. * * @param string $key * @param mixed $value * * @return string */ public function where( $key, $value ); /** * Returns a string suitable to be used as a WHERE clause in a SQL query for a custom field JOIN. * * @param string $key * @param mixed $value * @param string $table_alias * * @return string */ public function where_custom_field( $key, $value, $table_alias ); }