Table.php
1.64 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
<?php
namespace ACP\Export\Asset\Script;
use AC\Asset\Location;
use AC\Asset\Script;
use ACP\Export;
final class Table extends Script {
const NONCE_ACTION = 'acp_export_listscreen_export';
/**
* @var Export\Strategy
*/
private $strategy;
public function __construct( $handle, Location $location, Export\Strategy $strategy ) {
parent::__construct( $handle, $location, [ 'jquery' ] );
$this->strategy = $strategy;
}
public function register() {
parent::register();
wp_localize_script( $this->get_handle(), 'ACP_Export', [
'total_num_items' => $this->strategy->get_total_items(),
'num_iterations' => $this->strategy->get_num_items_per_iteration(),
'nonce' => wp_create_nonce( self::NONCE_ACTION ),
'i18n' => [
'dismiss' => __( 'Dismiss this notice.' ),
'export' => __( 'Export', 'codepress-admin-columns' ),
'export_error' => __( 'Something went wrong during exporting. Please try again.', 'codepress-admin-columns' ),
'processed' => __( 'Processed {0} of {1} items ({2}%).', 'codepress-admin-columns' ),
'exporting' => __( 'Exporting current list of items.', 'codepress-admin-columns' ),
'export_completed' => __( 'Export completed ({0} items). Your download will start automatically. If this does not happen, you can download the file again: ', 'codepress-admin-columns' ),
'download_file' => __( 'Download File', 'codepress-admin-columns' ),
'leaving' => __( 'You are currently generating an export file. Leaving the page will cancel this process. Are you sure you want to leave the page?', 'codepress-admin-columns' ),
],
] );
}
}