File "Same.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Tribe/Duplicate/Strategy/Same.php
File size: 1.13 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Class Tribe__Duplicate__Strategy__Same
*
* Models a close matching strategy; rougly a `==` equivalent.
*
* @since 4.6
*/
class Tribe__Duplicate__Strategy__Same
extends Tribe__Duplicate__Strategy__Base
implements 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
*
* @since 4.6
*/
public function where( $key, $value ) {
/** @var wpdb $wpdb */
global $wpdb;
if ( $this->is_a_numeric_post_field( $key ) ) {
return $wpdb->prepare( "{$key} = %d", $value );
}
return $wpdb->prepare( "{$key} = %s", $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
*
* @since 4.6
*/
public function where_custom_field( $key, $value, $table_alias ) {
/** @var wpdb $wpdb */
global $wpdb;
return $wpdb->prepare( "{$table_alias}.meta_key = %s AND {$table_alias}.meta_value = %s", $key, $value );
}
}