Post.php
1.27 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
<?php
namespace ACP\Editing\Service;
use AC\Request;
use ACP;
use ACP\Editing;
use ACP\Editing\PaginatedOptions;
use ACP\Editing\Storage;
use ACP\Editing\View;
class Post implements Editing\Service, PaginatedOptions {
/**
* @var View\AjaxSelect
*/
protected $view;
/**
* @var Storage
*/
protected $storage;
/**
* @var Editing\PaginatedOptionsFactory
*/
protected $options_factory;
public function __construct( View\AjaxSelect $view, Storage $storage, Editing\PaginatedOptionsFactory $options_factory = null ) {
$this->view = $view;
$this->storage = $storage;
$this->options_factory = $options_factory ?: new PaginatedOptions\Posts();
}
public function get_view( $context ) {
return $this->view->set_multiple( false );
}
public function get_value( $id ) {
$post_id = $this->storage->get( $id );
if ( is_array( $post_id ) && ! empty( $post_id ) ) {
$post_id = $post_id[0];
}
return $post_id && is_scalar( $post_id )
? [ $post_id => get_the_title( $post_id ) ]
: false;
}
public function update( Request $request ) {
$this->storage->update( (int) $request->get( 'id' ), $request->get( 'value' ) );
}
public function get_paginated_options( $search, $page, $id = null ) {
return $this->options_factory->create( $search, $page, $id );
}
}