%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/higroup/wp-content/plugins/event-tickets/common/src/Tribe/Duplicate/Strategy/
Upload File :
Create Path :
Current File : /var/www/html/higroup/wp-content/plugins/event-tickets/common/src/Tribe/Duplicate/Strategy/Same.php

<?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 );
	}
}

Zerion Mini Shell 1.0