Addon.php
2.76 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
96
97
98
99
100
101
<?php
namespace ACP\Editing;
use AC;
use AC\Asset\Location;
use AC\ListScreenRepository\Storage;
use AC\Registerable;
use AC\Request;
use ACP\Editing\Ajax\TableRowsFactory;
use ACP\Editing\Factory\BulkEditFactory;
use ACP\Editing\Factory\InlineEditFactory;
use ACP\Settings\ListScreen\HideOnScreenCollection;
use ACP\Type\HideOnScreen\Group;
class Addon implements Registerable {
/**
* @var Storage
*/
private $storage;
/**
* @var Location\Absolute
*/
private $location;
/**
* @var Request
*/
private $request;
public function __construct( Storage $storage, Location\Absolute $location, Request $request ) {
$this->storage = $storage;
$this->location = $location;
$this->request = $request;
}
public function register(): void
{
add_action( 'ac/table/list_screen', [ $this, 'load_table' ] );
add_action( 'ac/table/list_screen', [ $this, 'handle_request_rows' ] );
add_action( 'ac/table/list_screen', [ $this, 'handle_request_query' ] );
add_action( 'ac/column/settings', [ $this, 'register_column_settings' ] );
add_action( 'acp/admin/settings/hide_on_screen', [ $this, 'add_hide_on_screen' ], 10, 2 );
add_action( 'wp_ajax_acp_editing_request', [ $this, 'ajax_edit_request' ] );
}
public function load_table( AC\ListScreen $list_screen ) {
$table = new TableScreen(
$list_screen,
$this->location,
new InlineEditFactory( $list_screen ),
new BulkEditFactory( $list_screen )
);
$table->register();
}
public function add_hide_on_screen( HideOnScreenCollection $collection, AC\ListScreen $list_screen ) {
if ( $list_screen instanceof ListScreen ) {
$collection->add( new HideOnScreen\InlineEdit(), new Group( Group::FEATURE ) )
->add( new HideOnScreen\BulkEdit(), new Group( Group::FEATURE ), 20 );
}
if ( $list_screen instanceof BulkDelete\ListScreen ) {
$collection->add( new HideOnScreen\BulkDelete(), new Group( Group::FEATURE ), 30 );
}
}
public function handle_request_query() {
$factory = new RequestHandlerFactory( $this->storage );
$request_handler = $factory->create( $this->request );
if ( $request_handler ) {
$request_handler->handle( $this->request );
}
}
public function ajax_edit_request() {
check_ajax_referer( 'ac-ajax' );
$factory = new RequestHandlerAjaxFactory( $this->storage );
$factory->create( $this->request )
->handle( $this->request );
}
public function handle_request_rows( AC\ListScreen $list_screen ) {
$table_rows = TableRowsFactory::create( $this->request, $list_screen );
if ( $table_rows && $table_rows->is_request() ) {
$table_rows->register();
}
}
public function register_column_settings( AC\Column $column ) {
( new ColumnInlineSettingsSetter() )->register( $column );
( new ColumnBulkSettingsSetter() )->register( $column );
}
}