WC_Admin_Attributes::add_attribute()

Add Attribute admin panel.


Description Description

Shows the interface for adding new attributes.


Source Source

File: includes/admin/class-wc-admin-attributes.php

296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
public static function add_attribute() {
    ?>
    <div class="wrap woocommerce">
        <h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
 
        <br class="clear" />
        <div id="col-container">
            <div id="col-right">
                <div class="col-wrap">
                    <table class="widefat attributes-table wp-list-table ui-sortable" style="width:100%">
                        <thead>
                            <tr>
                                <th scope="col"><?php esc_html_e( 'Name', 'woocommerce' ); ?></th>
                                <th scope="col"><?php esc_html_e( 'Slug', 'woocommerce' ); ?></th>
                                <?php if ( wc_has_custom_attribute_types() ) : ?>
                                    <th scope="col"><?php esc_html_e( 'Type', 'woocommerce' ); ?></th>
                                <?php endif; ?>
                                <th scope="col"><?php esc_html_e( 'Order by', 'woocommerce' ); ?></th>
                                <th scope="col"><?php esc_html_e( 'Terms', 'woocommerce' ); ?></th>
                            </tr>
                        </thead>
                        <tbody>
                            <?php
                            $attribute_taxonomies = wc_get_attribute_taxonomies();
                            if ( $attribute_taxonomies ) :
                                foreach ( $attribute_taxonomies as $tax ) :
                                    ?>
                                    <tr>
                                            <td>
                                                <strong><a href="edit-tags.php?taxonomy=<?php echo esc_attr( wc_attribute_taxonomy_name( $tax->attribute_name ) ); ?>&amp;post_type=product"><?php echo esc_html( $tax->attribute_label ); ?></a></strong>
 
                                                <div class="row-actions"><span class="edit"><a href="<?php echo esc_url( add_query_arg( 'edit', $tax->attribute_id, 'edit.php?post_type=product&amp;page=product_attributes' ) ); ?>"><?php esc_html_e( 'Edit', 'woocommerce' ); ?></a> | </span><span class="delete"><a class="delete" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'delete', $tax->attribute_id, 'edit.php?post_type=product&amp;page=product_attributes' ), 'woocommerce-delete-attribute_' . $tax->attribute_id ) ); ?>"><?php esc_html_e( 'Delete', 'woocommerce' ); ?></a></span></div>
                                            </td>
                                            <td><?php echo esc_html( $tax->attribute_name ); ?></td>
                                            <?php if ( wc_has_custom_attribute_types() ) : ?>
                                                <td><?php echo esc_html( wc_get_attribute_type_label( $tax->attribute_type ) ); ?> <?php echo $tax->attribute_public ? esc_html__( '(Public)', 'woocommerce' ) : ''; ?></td>
                                            <?php endif; ?>
                                            <td>
                                                <?php
                                                switch ( $tax->attribute_orderby ) {
                                                    case 'name':
                                                        esc_html_e( 'Name', 'woocommerce' );
                                                        break;
                                                    case 'name_num':
                                                        esc_html_e( 'Name (numeric)', 'woocommerce' );
                                                        break;
                                                    case 'id':
                                                        esc_html_e( 'Term ID', 'woocommerce' );
                                                        break;
                                                    default:
                                                        esc_html_e( 'Custom ordering', 'woocommerce' );
                                                        break;
                                                }
                                                ?>
                                            </td>
                                            <td class="attribute-terms">
                                                <?php
                                                $taxonomy = wc_attribute_taxonomy_name( $tax->attribute_name );
 
                                                if ( taxonomy_exists( $taxonomy ) ) {
                                                    $terms        = get_terms( $taxonomy, 'hide_empty=0' );
                                                    $terms_string = implode( ', ', wp_list_pluck( $terms, 'name' ) );
                                                    if ( $terms_string ) {
                                                        echo esc_html( $terms_string );
                                                    } else {
                                                        echo '<span class="na">&ndash;</span>';
                                                    }
                                                } else {
                                                        echo '<span class="na">&ndash;</span>';
                                                }
                                                ?>
                                                <br /><a href="edit-tags.php?taxonomy=<?php echo esc_attr( wc_attribute_taxonomy_name( $tax->attribute_name ) ); ?>&amp;post_type=product" class="configure-terms"><?php esc_html_e( 'Configure terms', 'woocommerce' ); ?></a>
                                            </td>
                                        </tr>
                                        <?php
                                    endforeach;
                                else :
                                    ?>
                                    <tr>
                                        <td colspan="6"><?php esc_html_e( 'No attributes currently exist.', 'woocommerce' ); ?></td>
                                    </tr>
                                    <?php
                                endif;
                                ?>
                        </tbody>
                    </table>
                </div>
            </div>
            <div id="col-left">
                <div class="col-wrap">
                    <div class="form-wrap">
                        <h2><?php esc_html_e( 'Add new attribute', 'woocommerce' ); ?></h2>
                        <p><?php esc_html_e( 'Attributes let you define extra product data, such as size or color. You can use these attributes in the shop sidebar using the "layered nav" widgets.', 'woocommerce' ); ?></p>
                        <form action="edit.php?post_type=product&amp;page=product_attributes" method="post">
                            <?php do_action( 'woocommerce_before_add_attribute_fields' ); ?>
 
                            <div class="form-field">
                                <label for="attribute_label"><?php esc_html_e( 'Name', 'woocommerce' ); ?></label>
                                <input name="attribute_label" id="attribute_label" type="text" value="" />
                                <p class="description"><?php esc_html_e( 'Name for the attribute (shown on the front-end).', 'woocommerce' ); ?></p>
                            </div>
 
                            <div class="form-field">
                                <label for="attribute_name"><?php esc_html_e( 'Slug', 'woocommerce' ); ?></label>
                                <input name="attribute_name" id="attribute_name" type="text" value="" maxlength="28" />
                                <p class="description"><?php esc_html_e( 'Unique slug/reference for the attribute; must be no more than 28 characters.', 'woocommerce' ); ?></p>
                            </div>
 
                            <div class="form-field">
                                <label for="attribute_public"><input name="attribute_public" id="attribute_public" type="checkbox" value="1" /> <?php esc_html_e( 'Enable Archives?', 'woocommerce' ); ?></label>
 
                                <p class="description"><?php esc_html_e( 'Enable this if you want this attribute to have product archives in your store.', 'woocommerce' ); ?></p>
                            </div>
 
                            <?php
                            /**
                             * Attribute types can change the way attributes are displayed on the frontend and admin.
                             *
                             * By Default WooCommerce only includes the `select` type. Others can be added with the
                             * `product_attributes_type_selector` filter. If there is only the default type registered,
                             * this setting will be hidden.
                             */
                            if ( wc_has_custom_attribute_types() ) {
                                ?>
                                <div class="form-field">
                                    <label for="attribute_type"><?php esc_html_e( 'Type', 'woocommerce' ); ?></label>
                                    <select name="attribute_type" id="attribute_type">
                                        <?php foreach ( wc_get_attribute_types() as $key => $value ) : ?>
                                            <option value="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $value ); ?></option>
                                        <?php endforeach; ?>
                                        <?php
                                            /**
                                             * Deprecated action in favor of product_attributes_type_selector filter.
                                             *
                                             * @todo Remove in 4.0.0
                                             * @deprecated 2.4.0
                                             */
                                            do_action( 'woocommerce_admin_attribute_types' );
                                        ?>
                                    </select>
                                    <p class="description"><?php esc_html_e( "Determines how this attribute's values are displayed.", 'woocommerce' ); ?></p>
                                </div>
                                <?php
                            }
                            ?>
 
                            <div class="form-field">
                                <label for="attribute_orderby"><?php esc_html_e( 'Default sort order', 'woocommerce' ); ?></label>
                                <select name="attribute_orderby" id="attribute_orderby">
                                    <option value="menu_order"><?php esc_html_e( 'Custom ordering', 'woocommerce' ); ?></option>
                                    <option value="name"><?php esc_html_e( 'Name', 'woocommerce' ); ?></option>
                                    <option value="name_num"><?php esc_html_e( 'Name (numeric)', 'woocommerce' ); ?></option>
                                    <option value="id"><?php esc_html_e( 'Term ID', 'woocommerce' ); ?></option>
                                </select>
                                <p class="description"><?php esc_html_e( 'Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute.', 'woocommerce' ); ?></p>
                            </div>
 
                            <?php do_action( 'woocommerce_after_add_attribute_fields' ); ?>
 
                            <p class="submit"><button type="submit" name="add_new_attribute" id="submit" class="button button-primary" value="<?php esc_attr_e( 'Add attribute', 'woocommerce' ); ?>"><?php esc_html_e( 'Add attribute', 'woocommerce' ); ?></button></p>
                            <?php wp_nonce_field( 'woocommerce-add-new_attribute' ); ?>
                        </form>
                    </div>
                </div>
            </div>
        </div>
        <script type="text/javascript">
        /* <![CDATA[ */
 
            jQuery( 'a.delete' ).click( function() {
                if ( window.confirm( '<?php esc_html_e( 'Are you sure you want to delete this attribute?', 'woocommerce' ); ?>' ) ) {
                    return true;
                }
                return false;
            });
 
        /* ]]> */
        </script>
    </div>
    <?php
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.