Settings.php
1.67 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
namespace AC\Admin\Page;
use AC\Admin;
use AC\Admin\RenderableHead;
use AC\Admin\Section;
use AC\Admin\SectionCollection;
use AC\Asset\Assets;
use AC\Asset\Enqueueables;
use AC\Asset\Location;
use AC\Renderable;
use AC\View;
class Settings implements Enqueueables, Renderable, RenderableHead {
const NAME = 'settings';
/**
* @var Renderable
*/
private $head;
/**
* @var SectionCollection
*/
protected $sections;
/**
* @var Location\Absolute
*/
private $location;
public function __construct( Renderable $head, Location\Absolute $location, SectionCollection $sections = null ) {
if ( null === $sections ) {
$sections = new SectionCollection();
}
$this->head = $head;
$this->location = $location;
$this->sections = $sections;
}
public function render_head() {
return $this->head;
}
/**
* @param string $slug
*
* @return Section|null
*/
public function get_section( $slug ) {
return $this->sections->get( $slug );
}
/**
* @param Section $section
* @param int $prio
*
* @return $this
*/
public function add_section( Section $section, $prio = 10 ) {
$this->sections->add( $section, $prio );
return $this;
}
public function get_assets() {
$factory = new Admin\Asset\Script\SettingsFactory(
$this->location
);
$assets = new Assets( [
$factory->create(),
] );
foreach ( $this->sections->all() as $section ) {
if ( $section instanceof Enqueueables ) {
$assets->add_collection( $section->get_assets() );
}
}
return $assets;
}
public function render() {
$view = new View( [
'sections' => $this->sections->all(),
] );
return $view->set_template( 'admin/page/settings' )->render();
}
}