Tools.php
1.38 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
<?php
namespace ACP\Admin\Page;
use AC\Admin\RenderableHead;
use AC\Asset;
use AC\Asset\Location;
use AC\Renderable;
use AC\View;
use ACP;
class Tools implements Asset\Enqueueables, Renderable, RenderableHead {
const NAME = 'import-export';
/**
* @var Renderable[]
*/
private $sections = [];
/**
* @var Location\Absolute
*/
private $location;
/**
* @var Renderable
*/
private $head;
public function __construct( Location\Absolute $location, Renderable $head ) {
$this->location = $location;
$this->head = $head;
}
public function render_head() {
return $this->head;
}
/**
* @param Renderable $section
*
* @return $this
*/
public function add_section( Renderable $section ) {
$this->sections[] = $section;
return $this;
}
public function get_assets() {
$assets = new Asset\Assets( [
new Asset\Style( 'acp-style-tools', $this->location->with_suffix( 'assets/core/css/admin-tools.css' ) ),
new Asset\Script( 'acp-script-tools', $this->location->with_suffix( 'assets/core/js/tools.js' ) ),
] );
foreach ( $this->sections as $section ) {
if ( $section instanceof Asset\Enqueueables ) {
$assets->add_collection( $section->get_assets() );
}
}
return $assets;
}
public function render() {
$view = new View( [
'sections' => $this->sections,
] );
$view->set_template( 'admin/page/tools' );
return $view->render();
}
}