Oembed.php
1 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
<?php
namespace ACA\ACF\Settings\Column;
use AC;
use AC\View;
class Oembed extends AC\Settings\Column
implements AC\Settings\FormatValue {
/**
* @var string
*/
private $oembed;
protected function define_options() {
return [ 'oembed' ];
}
public function format( $value, $original_value ) {
if ( 'video' === $this->get_oembed() ) {
$value = wp_oembed_get( $value, [
'width' => 200,
'height' => 200,
] );
}
return $value;
}
public function create_view() {
$select = $this->create_element( 'select' );
$select->set_options( [
'' => __( 'Url' ), // default
'video' => __( 'Video' ),
] );
$view = new View( [
'label' => __( 'Display format', 'codepress-admin-columns' ),
'setting' => $select,
] );
return $view;
}
/**
* @return string
*/
public function get_oembed() {
return $this->oembed;
}
/**
* @param string $display
*
* @return $this
*/
public function set_oembed( $display ) {
$this->oembed = $display;
return $this;
}
}