settings_tabs = array( 'brands' => __( 'Brands', 'woocommerce' ), ); // Hiding setting for future depreciation. Only users who have touched this settings should see it. $setting_value = get_option( 'wc_brands_show_description' ); if ( is_string( $setting_value ) ) { // Add the settings fields to each tab. $this->init_form_fields(); add_action( 'woocommerce_get_sections_products', array( $this, 'add_settings_tab' ) ); add_action( 'woocommerce_get_settings_products', array( $this, 'add_settings_section' ), null, 2 ); } add_action( 'woocommerce_update_options_catalog', array( $this, 'save_admin_settings' ) ); /* 2.1 */ add_action( 'woocommerce_update_options_products', array( $this, 'save_admin_settings' ) ); // Add brands filtering to the coupon creation screens. add_action( 'woocommerce_coupon_options_usage_restriction', array( $this, 'add_coupon_brands_fields' ) ); add_action( 'woocommerce_coupon_options_save', array( $this, 'save_coupon_brands' ) ); // Permalinks. add_filter( 'pre_update_option_woocommerce_permalinks', array( $this, 'validate_product_base' ) ); add_action( 'current_screen', array( $this, 'add_brand_base_setting' ) ); // CSV Import/Export Support. // https://github.com/woocommerce/woocommerce/wiki/Product-CSV-Importer-&-Exporter // Import. add_filter( 'woocommerce_csv_product_import_mapping_options', array( $this, 'add_column_to_importer_exporter' ), 10 ); add_filter( 'woocommerce_csv_product_import_mapping_default_columns', array( $this, 'add_default_column_mapping' ), 10 ); add_filter( 'woocommerce_product_import_inserted_product_object', array( $this, 'process_import' ), 10, 2 ); // Export. add_filter( 'woocommerce_product_export_column_names', array( $this, 'add_column_to_importer_exporter' ), 10 ); add_filter( 'woocommerce_product_export_product_default_columns', array( $this, 'add_column_to_importer_exporter' ), 10 ); add_filter( 'woocommerce_product_export_product_column_brand_ids', array( $this, 'get_column_value_brand_ids' ), 10, 2 ); } /** * Add the settings for the new "Brands" subtab. * * @since 9.4.0 * * @param array $settings Settings. * @param array $current_section Current section. */ public function add_settings_section( $settings, $current_section ) { if ( 'brands' === $current_section ) { $settings = $this->settings; } return $settings; } /** * Add a new "Brands" subtab to the "Products" tab. * * @since 9.4.0 * @param array $sections Sections. */ public function add_settings_tab( $sections ) { $sections = array_merge( $sections, $this->settings_tabs ); return $sections; } /** * Display coupon filter fields relating to brands. * * @since 9.4.0 * @return void */ public function add_coupon_brands_fields() { global $post; // Brands. ?>

settings = apply_filters( 'woocommerce_brands_settings_fields', array( array( 'name' => __( 'Brands Archives', 'woocommerce' ), 'type' => 'title', 'desc' => '', 'id' => 'brands_archives', ), array( 'name' => __( 'Show description', 'woocommerce' ), 'desc' => __( 'Choose to show the brand description on the archive page. Turn this off if you intend to use the description widget instead. Please note: this is only for themes that do not show the description.', 'woocommerce' ), 'tip' => '', 'id' => 'wc_brands_show_description', 'css' => '', 'std' => 'yes', 'type' => 'checkbox', ), array( 'type' => 'sectionend', 'id' => 'brands_archives', ), ) ); } /** * Enqueue scripts. * * @return void */ public function scripts() { $screen = get_current_screen(); $version = Constants::get_constant( 'WC_VERSION' ); $suffix = Constants::is_true( 'SCRIPT_DEBUG' ) ? '' : '.min'; if ( 'edit-product' === $screen->id ) { wp_register_script( 'wc-brands-enhanced-select', WC()->plugin_url() . '/assets/js/admin/wc-brands-enhanced-select' . $suffix . '.js', array( 'jquery', 'selectWoo', 'wc-enhanced-select', 'wp-api' ), $version, true ); wp_localize_script( 'wc-brands-enhanced-select', 'wc_brands_enhanced_select_params', array( 'ajax_url' => get_rest_url() . 'brands/search' ) ); wp_enqueue_script( 'wc-brands-enhanced-select' ); } if ( in_array( $screen->id, array( 'edit-product_brand' ), true ) ) { wp_enqueue_media(); wp_enqueue_style( 'woocommerce_admin_styles' ); } } /** * Enqueue styles. * * @return void */ public function styles() { $version = Constants::get_constant( 'WC_VERSION' ); wp_enqueue_style( 'brands-admin-styles', WC()->plugin_url() . '/assets/css/brands-admin.css', array(), $version ); } /** * Admin settings function. */ public function admin_settings() { woocommerce_admin_fields( $this->settings ); } /** * Save admin settings function. */ public function save_admin_settings() { // phpcs:ignore WordPress.Security.NonceVerification.Recommended if ( isset( $_GET['section'] ) && 'brands' === $_GET['section'] ) { woocommerce_update_options( $this->settings ); } } /** * Category thumbnails. */ public function add_thumbnail_field() { global $woocommerce; ?>

term_id, 'thumbnail_id', true ); if ( $thumbnail_id ) { $image = wp_get_attachment_url( $thumbnail_id ); } if ( empty( $image ) ) { $image = wc_placeholder_img_src(); } ?>
$brands_column ), array_slice( $columns, -2, null, true ) ); } /** * Columns function. * * @param mixed $columns Columns. */ public function columns( $columns ) { if ( empty( $columns ) ) { return $columns; } $new_columns = array(); $new_columns['cb'] = $columns['cb']; $new_columns['thumb'] = __( 'Image', 'woocommerce' ); unset( $columns['cb'] ); $columns = array_merge( $new_columns, $columns ); return $columns; } /** * Column function. * * @param mixed $columns Columns. * @param mixed $column Column. * @param mixed $id ID. */ public function column( $columns, $column, $id ) { if ( 'thumb' === $column ) { global $woocommerce; $image = ''; $thumbnail_id = get_term_meta( $id, 'thumbnail_id', true ); if ( $thumbnail_id ) { $image = wp_get_attachment_url( $thumbnail_id ); } if ( empty( $image ) ) { $image = wc_placeholder_img_src(); } $columns .= 'Thumbnail'; } return $columns; } /** * Renders either dropdown or a search field for brands depending on the threshold value of * woocommerce_product_brand_filter_threshold filter. */ public function render_product_brand_filter() { // phpcs:disable WordPress.Security.NonceVerification $brands_count = (int) wp_count_terms( 'product_brand' ); $current_brand_slug = wc_clean( wp_unslash( $_GET['product_brand'] ?? '' ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized /** * Filter the brands threshold count. * * @since 9.4.0 * * @param int $value Threshold. */ if ( $brands_count <= apply_filters( 'woocommerce_product_brand_filter_threshold', 100 ) ) { wc_product_dropdown_categories( array( 'pad_counts' => true, 'show_count' => true, 'orderby' => 'name', 'selected' => $current_brand_slug, 'show_option_none' => __( 'Filter by brand', 'woocommerce' ), 'option_none_value' => '', 'value_field' => 'slug', 'taxonomy' => 'product_brand', 'name' => 'product_brand', 'class' => 'dropdown_product_brand', ) ); } else { $current_brand = $current_brand_slug ? get_term_by( 'slug', $current_brand_slug, 'product_brand' ) : ''; $selected_option = ''; if ( $current_brand_slug && $current_brand ) { $selected_option = ''; } $placeholder = esc_attr__( 'Filter by brand', 'woocommerce' ); ?> id ) { return; } add_settings_field( 'woocommerce_product_brand_slug', __( 'Product brand base', 'woocommerce' ), array( $this, 'product_brand_slug_input' ), 'permalink', 'optional' ); $this->save_permalink_settings(); } /** * Add a slug input box. */ public function product_brand_slug_input() { $permalink = get_option( 'woocommerce_brand_permalink', '' ); ?> 'brand_ids' ); return array_merge( $mappings, $new_mapping ); } /** * Add brands to newly imported product. * * @param WC_Product $product Product being imported. * @param array $data Raw CSV data. */ public function process_import( $product, $data ) { if ( empty( $data['brand_ids'] ) ) { return; } $brand_ids = array_map( 'intval', $this->parse_brands_field( $data['brand_ids'] ) ); wp_set_object_terms( $product->get_id(), $brand_ids, 'product_brand' ); } /** * Parse brands field from a CSV during import. * * Based on WC_Product_CSV_Importer::parse_categories_field() * * @param string $value Field value. * @return array */ public function parse_brands_field( $value ) { // Based on WC_Product_Importer::explode_values(). $values = str_replace( '\\,', '::separator::', explode( ',', $value ) ); $row_terms = array(); foreach ( $values as $row_value ) { $row_terms[] = trim( str_replace( '::separator::', ',', $row_value ) ); } $brands = array(); foreach ( $row_terms as $row_term ) { $parent = null; // WC Core uses '>', but for some reason it's already escaped at this point. $_terms = array_map( 'trim', explode( '>', $row_term ) ); $total = count( $_terms ); foreach ( $_terms as $index => $_term ) { $term = term_exists( $_term, 'product_brand', $parent ); if ( is_array( $term ) ) { $term_id = $term['term_id']; } else { $term = wp_insert_term( $_term, 'product_brand', array( 'parent' => intval( $parent ) ) ); if ( is_wp_error( $term ) ) { break; // We cannot continue if the term cannot be inserted. } $term_id = $term['term_id']; } // Only requires assign the last category. if ( ( 1 + $index ) === $total ) { $brands[] = $term_id; } else { // Store parent to be able to insert or query brands based in parent ID. $parent = $term_id; } } } return $brands; } /** * Get brands column value for csv export. * * @param string $value What will be exported. * @param WC_Product $product Product being exported. * @return string Brands separated by commas and child brands as "parent > child". */ public function get_column_value_brand_ids( $value, $product ) { $brand_ids = wp_parse_id_list( wp_get_post_terms( $product->get_id(), 'product_brand', array( 'fields' => 'ids' ) ) ); if ( ! count( $brand_ids ) ) { return ''; } // Based on WC_CSV_Exporter::format_term_ids(). $formatted_brands = array(); foreach ( $brand_ids as $brand_id ) { $formatted_term = array(); $ancestor_ids = array_reverse( get_ancestors( $brand_id, 'product_brand' ) ); foreach ( $ancestor_ids as $ancestor_id ) { $term = get_term( $ancestor_id, 'product_brand' ); if ( $term && ! is_wp_error( $term ) ) { $formatted_term[] = $term->name; } } $term = get_term( $brand_id, 'product_brand' ); if ( $term && ! is_wp_error( $term ) ) { $formatted_term[] = $term->name; } $formatted_brands[] = implode( ' > ', $formatted_term ); } // Based on WC_CSV_Exporter::implode_values(). $values_to_implode = array(); foreach ( $formatted_brands as $brand ) { $brand = (string) is_scalar( $brand ) ? $brand : ''; $values_to_implode[] = str_replace( ',', '\\,', $brand ); } return implode( ', ', $values_to_implode ); } } $GLOBALS['WC_Brands_Admin'] = new WC_Brands_Admin();