1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php // phpcs:ignoreFile
namespace AutomateWoo\Fields;
if ( ! defined( 'ABSPATH' ) ) exit;
/** * @class Attribute */ class Attribute extends Select {
protected $name = 'attribute';
/** * @param bool $show_placeholder */ function __construct( $show_placeholder = true ) {
parent::__construct( $show_placeholder );
$this->set_title( __( 'Attribute', 'automatewoo' ) );
$attributes = wc_get_attribute_taxonomies();
foreach( $attributes as $attribute ) { $this->options[$attribute->attribute_name] = $attribute->attribute_label; } }
}
|