Label.php
1.09 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
<?php
namespace AC\Settings\Column;
use AC\Column\LabelEncoder;
use AC\Sanitize\Kses;
use AC\Settings;
use AC\View;
class Label extends Settings\Column {
/**
* @var string
*/
private $label;
protected function define_options() {
return [
'label' => $this->column->get_label(),
'label_type' => 'text',
];
}
public function create_view() {
$setting = $this
->create_element( 'text' )
->set_attribute( 'placeholder', $this->column->get_label() );
$view = new View( [
'label' => __( 'Label', 'codepress-admin-columns' ),
'tooltip' => __( 'This is the name which will appear as the column header.', 'codepress-admin-columns' ),
'setting' => $setting,
] );
$view->set_template( 'settings/setting-label' );
return $view;
}
/**
* @return string
*/
public function get_label() {
return ( new LabelEncoder() )->decode( $this->label );
}
/**
* @param string $label
*/
public function set_label( $label ) {
$sanitize = new Kses();
$this->label = (string) apply_filters( 'ac/column/label', $sanitize->sanitize( (string) $label ), $label );
}
}