File.php
883 Bytes
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
<?php
namespace ACA\MetaBox\Column;
use ACA\MetaBox\Column;
use ACA\MetaBox\Editing;
use ACA\MetaBox\Search;
use ACP;
class File extends Column implements ACP\Search\Searchable, ACP\Editing\Editable, ACP\ConditionalFormat\Formattable {
use ACP\ConditionalFormat\FilteredHtmlFormatTrait;
public function format_single_value( $value, $id = null ) {
if ( empty( $value ) ) {
return $this->get_empty_char();
}
$results = [];
foreach ( $value as $data ) {
$results[] = ac_helper()->html->tooltip( sprintf( '<a href="%s" download>%s</a>', $data['url'], $data['name'] ), $data['url'] );
}
return implode( ', ', $results );
}
public function is_multiple() {
return true;
}
public function search() {
return ( new Search\Factory\Meta )->create( $this );
}
public function editing() {
return ( new Editing\ServiceFactory\File )->create( $this );
}
}