Featured.php
1.12 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 ACA\EC\Column\Event;
use AC\Helper\Select\Option;
use AC\Type\ToggleOptions;
use ACA\EC\Column\Meta;
use ACA\EC\Filtering;
use ACA\EC\Search;
use ACP\Editing;
use ACP\Search\Searchable;
class Featured extends Meta
implements Searchable {
public function __construct() {
$this->set_type( 'column-ec-event_featured' )
->set_label( __( 'Featured', 'codepress-admin-columns' ) );
parent::__construct();
}
public function get_meta_key() {
return '_tribe_featured';
}
public function get_value( $id ) {
$value = $this->get_raw_value( $id );
if ( ! $value ) {
return $this->get_empty_char();
}
return ac_helper()->icon->yes();
}
public function editing() {
$options = new ToggleOptions(
new Option( '0', 'False' ),
new Option( '1', 'True' )
);
return new Editing\Service\Basic(
new Editing\View\Toggle( $options ),
new Editing\Storage\Post\Meta( $this->get_meta_key() )
);
}
public function filtering() {
return new Filtering\Event\Featured( $this );
}
public function search() {
return new Search\Event\Featured( $this->get_meta_key(), $this->get_meta_type() );
}
}