wcpos_get_barcode_field(); if ( '_sku' === $barcode_field ) { return $object->get_sku(); } if ( '_global_unique_id' === $barcode_field ) { return $object->get_global_unique_id(); } return $object->get_meta( $barcode_field ); } /** * Get barcode field from settings. * * @return string */ public function wcpos_get_barcode_field() { $barcode_field = woocommerce_pos_get_settings( 'general', 'barcode_field' ); // Check for WP_Error. if ( is_wp_error( $barcode_field ) ) { Logger::log( 'Error retrieving barcode_field: ' . $barcode_field->get_error_message() ); return ''; } // Check for non-string values. if ( ! \is_string( $barcode_field ) ) { Logger::log( 'Unexpected data type for barcode_field. Expected string, got: ' . \gettype( $barcode_field ) ); return ''; } return $barcode_field; } /** * Get barcode field from settings. * * @return bool */ public function wcpos_pos_only_products_enabled() { $pos_only_products_enabled = woocommerce_pos_get_settings( 'general', 'pos_only_products' ); // Check for WP_Error. if ( is_wp_error( $pos_only_products_enabled ) ) { Logger::log( 'Error retrieving pos_only_products: ' . $pos_only_products_enabled->get_error_message() ); return false; } // Make sure it's true, just in case there's a corrupt setting. return true === $pos_only_products_enabled; } }