Columns.php
1.88 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
<?php
namespace ACP\Admin\NetworkPageFactory;
use AC;
use AC\Admin\MenuFactoryInterface;
use AC\Admin\PageFactoryInterface;
use AC\Asset\Location;
use AC\Controller\Middleware\ListScreenAdmin;
use AC\DefaultColumnsRepository;
use AC\ListScreenRepository\Storage;
use AC\Request;
use InvalidArgumentException;
class Columns implements PageFactoryInterface {
private $location_core;
private $list_screen_factory;
protected $list_screen_uninitialized;
protected $menu_list_factory;
private $storage;
private $list_keys_factory;
private $menu_factory;
public function __construct(
Location\Absolute $location_core,
AC\ListScreenFactory $list_screen_factory,
AC\Admin\ListScreenUninitialized $list_screen_uninitialized,
AC\Admin\MenuListFactory $menu_list_factory,
Storage $storage,
AC\Table\ListKeysFactoryInterface $list_keys_factory,
MenuFactoryInterface $menu_factory
) {
$this->location_core = $location_core;
$this->list_screen_factory = $list_screen_factory;
$this->list_screen_uninitialized = $list_screen_uninitialized;
$this->menu_list_factory = $menu_list_factory;
$this->storage = $storage;
$this->list_keys_factory = $list_keys_factory;
$this->menu_factory = $menu_factory;
}
public function create() {
$request = new Request();
$request->add_middleware(
new ListScreenAdmin(
$this->storage,
new AC\Admin\Preference\ListScreen(),
$this->list_screen_factory,
$this->list_keys_factory
)
);
$list_screen = $request->get( 'list_screen' );
if ( ! $list_screen ) {
throw new InvalidArgumentException( 'Invalid screen.' );
}
return new AC\Admin\Page\Columns(
$this->location_core,
$list_screen,
new DefaultColumnsRepository(),
$this->list_screen_uninitialized,
new AC\Admin\Section\Partial\Menu( $this->menu_list_factory ),
new AC\Admin\View\Menu( $this->menu_factory->create( 'columns' ) ),
true
);
}
}