ray( 'taxonomy' => array( 'operator' => 'NOT IN', 'values' => array_map( 'esc_sql', self::get_setting( 'taxonomies_blacklist' ) ), ), ); } /** * Returns escaped SQL for blacklisted comment meta. * Can be injected directly into a WHERE clause. * * @access public * @static * * @return string SQL WHERE clause. */ public static function get_whitelisted_comment_meta_sql() { return 'meta_key IN (\'' . join( '\', \'', array_map( 'esc_sql', self::get_setting( 'comment_meta_whitelist' ) ) ) . '\')'; } /** * Returns SQL-escaped values for allowed post meta keys. * * @access public * @static * * @return array Meta keys filter values */ public static function get_allowed_comment_meta_structured() { return array( 'meta_key' => array( 'operator' => 'IN', 'values' => array_map( 'esc_sql', self::get_setting( 'comment_meta_whitelist' ) ), ), ); } /** * Returns escaped SQL for comments, excluding any spam comments. * Can be injected directly into a WHERE clause. * * @access public * @static * * @return string SQL WHERE clause. */ public static function get_comments_filter_sql() { return "comment_approved <> 'spam'"; } /** * Delete any settings options and clean up the current settings state. * * @access public * @static */ public static function reset_data() { $valid_settings = self::$valid_settings; foreach ( $valid_settings as $option => $value ) { delete_option( self::SETTINGS_OPTION_PREFIX . $option ); } self::set_importing( null ); self::set_doing_cron( null ); self::set_is_syncing( null ); self::set_is_sending( null ); } /** * Set the importing state. * * @access public * @static * * @param boolean $is_importing Whether WordPress is currently importing. */ public static function set_importing( $is_importing ) { // Set to NULL to revert to WP_IMPORTING, the standard behavior. self::$is_importing = $is_importing; } /** * Whether WordPress is currently importing. * * @access public * @static * * @return boolean Whether WordPress is currently importing. */ public static function is_importing() { if ( ! is_null( self::$is_importing ) ) { return self::$is_importing; } return defined( 'WP_IMPORTING' ) && WP_IMPORTING; } /** * Whether sync is enabled. * * @access public * @static * * @return boolean Whether sync is enabled. */ public static function is_sync_enabled() { return ! ( self::get_setting( 'disable' ) || self::get_setting( 'network_disable' ) ); } /** * Set the WP cron state. * * @access public * @static * * @param boolean $is_doing_cron Whether WordPress is currently doing WP cron. */ public static function set_doing_cron( $is_doing_cron ) { // Set to NULL to revert to WP_IMPORTING, the standard behavior. self::$is_doing_cron = $is_doing_cron; } /** * Whether WordPress is currently doing WP cron. * * @access public * @static * * @return boolean Whether WordPress is currently doing WP cron. */ public static function is_doing_cron() { if ( ! is_null( self::$is_doing_cron ) ) { return self::$is_doing_cron; } return defined( 'DOING_CRON' ) && DOING_CRON; } /** * Whether we are currently syncing. * * @access public * @static * * @return boolean Whether we are currently syncing. */ public static function is_syncing() { return (bool) self::$is_syncing || ( defined( 'REST_API_REQUEST' ) && REST_API_REQUEST ); } /** * Set the syncing state. * * @access public * @static * * @param boolean $is_syncing Whether we are currently syncing. */ public static function set_is_syncing( $is_syncing ) { self::$is_syncing = $is_syncing; } /** * Whether we are currently sending sync items. * * @access public * @static * * @return boolean Whether we are currently sending sync items. */ public static function is_sending() { return (bool) self::$is_sending; } /** * Set the sending state. * * @access public * @static * * @param boolean $is_sending Whether we are currently sending sync items. */ public static function set_is_sending( $is_sending ) { self::$is_sending = $is_sending; } /** * Whether should send from the queue * * @access public * @static * * @param string $queue_id The queue identifier. * * @return boolean Whether sync is enabled. */ public static function is_sender_enabled( $queue_id ) { return (bool) self::get_setting( $queue_id . '_sender_enabled' ); } /** * Whether checksums are enabled. * * @access public * @static * * @return boolean Whether sync is enabled. */ public static function is_checksum_enabled() { return ! (bool) self::get_setting( 'checksum_disable' ); } }