ListScreenOrder.php
617 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
39
<?php
namespace AC\Storage;
class ListScreenOrder {
const KEY = 'ac_list_screens_order';
public function get( $key ) {
$orders = $this->get_data();
if ( ! isset( $orders[ $key ] ) ) {
return [];
}
return $orders[ $key ];
}
public function set( $key, array $list_screen_ids ) {
$data = $this->get_data();
$data[ $key ] = $list_screen_ids;
update_option( self::KEY, $data, false );
}
public function add( $key, $id ) {
$ids = $this->get( $key );
array_unshift( $ids, $id );
$this->set( $key, $ids );
}
private function get_data() {
return get_option( self::KEY, [] );
}
}