Help.php
707 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
<?php
namespace AC\Admin\PageFactory;
use AC;
use AC\Admin;
use AC\Admin\MenuFactoryInterface;
use AC\Admin\Page;
use AC\Admin\PageFactoryInterface;
use AC\Asset\Location;
use AC\Deprecated\Hooks;
class Help implements PageFactoryInterface {
/**
* @var Location\Absolute
*/
protected $location;
/**
* @var MenuFactoryInterface
*/
protected $menu_factory;
public function __construct( Location\Absolute $location, MenuFactoryInterface $menu_factory ) {
$this->location = $location;
$this->menu_factory = $menu_factory;
}
public function create() {
return new Page\Help(
new Hooks(),
$this->location,
new Admin\View\Menu( $this->menu_factory->create( 'help' ) )
);
}
}