AjaxColumnValue.php
1.47 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
<?php
namespace AC\Controller;
use AC\Ajax;
use AC\Column\AjaxValue;
use AC\ListScreenRepository;
use AC\Registrable;
use AC\Type\ListScreenId;
class AjaxColumnValue implements Registrable {
/**
* @var ListScreenRepository
*/
private $repository;
public function __construct( ListScreenRepository $repository ) {
$this->repository = $repository;
}
public function register() {
$this->get_ajax_handler()->register();
}
private function get_ajax_handler() {
$handler = new Ajax\Handler();
$handler
->set_action( 'ac_get_column_value' )
->set_callback( [ $this, 'get_value' ] );
return $handler;
}
public function get_value() {
check_ajax_referer( 'ac-ajax' );
// Get ID of entry to edit
$id = (int) filter_input( INPUT_POST, 'pk' );
if ( ! $id ) {
wp_send_json_error( __( 'Invalid item ID.', 'codepress-admin-columns' ), 400 );
}
$list_screen = $this->repository->find( new ListScreenId( filter_input( INPUT_POST, 'layout' ) ) );
if ( ! $list_screen ) {
wp_send_json_error( __( 'Invalid list screen.', 'codepress-admin-columns' ), 400 );
}
$column = $list_screen->get_column_by_name( filter_input( INPUT_POST, 'column' ) );
if ( ! $column ) {
wp_send_json_error( __( 'Invalid column.', 'codepress-admin-columns' ), 400 );
}
if ( ! $column instanceof AjaxValue ) {
wp_send_json_error( __( 'Invalid method.', 'codepress-admin-columns' ), 400 );
}
// Trigger ajax callback
echo $column->get_ajax_value( $id );
exit;
}
}