Button.php
3.14 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?php
namespace AC\Table;
class Button {
/** @var string $slug */
private $slug;
/** @var string $label */
private $label;
/** @var string $text */
private $text;
/** @var string $dashicon */
private $dashicon;
/** @var array */
protected $attributes = [];
public function __construct( $slug ) {
$this->set_slug( $slug );
$this->add_class( 'ac-table-button -' . $slug );
}
/**
* @return array
*/
public function get_attributes() {
return $this->attributes;
}
/**
* @param string $class
*
* @return $this
*/
public function add_class( $class ) {
$this->set_attribute( 'class', $this->get_attribute( 'class' ) . ' ' . esc_attr( $class ) );
return $this;
}
/**
* @param $key
*
* @return string|false
*/
public function get_attribute( $key ) {
if ( ! isset( $this->attributes[ $key ] ) ) {
return false;
}
return trim( $this->attributes[ $key ] );
}
/**
* @param string $key
* @param string $value
*
* @return $this
*/
public function set_attribute( $key, $value ) {
$this->attributes[ $key ] = $value;
return $this;
}
/**
* Get attributes as string
*
* @param array $attributes
*
* @return string
*/
protected function get_attributes_as_string( array $attributes ) {
$output = [];
foreach ( $attributes as $key => $value ) {
$output[] = $this->get_attribute_as_string( $key, $value );
}
return implode( ' ', $output );
}
/**
* Render an attribute
*
* @param string $key
* @param string $value
*
* @return string
*/
protected function get_attribute_as_string( $key, $value = null ) {
if ( null === $value ) {
$value = $this->get_attribute( $key );
}
return ac_helper()->html->get_attribute_as_string( $key, $value );
}
/**
* @return string
*/
public function get_slug() {
return $this->slug;
}
/**
* @param string $slug
*
* @return $this
*/
public function set_slug( $slug ) {
$this->slug = $slug;
return $this;
}
/**
* @return string
*/
public function get_label() {
return $this->label;
}
/**
* @param string $label
*
* @return $this
*/
public function set_label( $label ) {
$this->label = $label;
return $this;
}
/**
* @return string
*/
public function get_text() {
return $this->text;
}
/**
* @param string $text
*
* @return Button
*/
public function set_text( $text ) {
$this->text = $text;
return $this;
}
/**
* @return string
*/
public function get_dashicon() {
if ( ! $this->dashicon ) {
return '';
}
return ac_helper()->icon->dashicon( [
'icon' => $this->dashicon,
] );
}
/**
* @param $dashicon
*
* @return $this
*/
public function set_dashicon( $dashicon ) {
$this->dashicon = $dashicon;
return $this;
}
/**
* @param $url
*
* @return $this
*/
public function set_url( $url ) {
$this->set_attribute( 'href', esc_url( $url ) );
return $this;
}
public function render() {
$attributes = $this->get_attributes();
$attributes['data-ac-tip'] = $this->get_label();
$template = '<a %s>%s%s</a>';
echo sprintf( $template, $this->get_attributes_as_string( $attributes ), $this->get_dashicon(), $this->get_text() );
}
}