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: 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 ); } }
Save