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
|
<?php /** * Output the content for Directory smush list dialog content. * * @package WP_Smush */
if ( ! defined( 'WPINC' ) ) { die; }
?>
<div class="sui-modal sui-modal-lg"> <div role="dialog" id="wp-smush-list-dialog" class="sui-modal-content wp-smush-list-dialog" aria-modal="true" aria-labelledby="list-dialog-title" aria-describedby="list-dialog-description" > <div class="sui-box"> <div class="sui-box-header"> <h3 class="sui-box-title" id="list-dialog-title"> <?php esc_html_e( 'Choose Directory', 'wp-smushit' ); ?> </h3> <button class="sui-button-icon sui-button-float--right" data-modal-close="" id="dialog-close-div"> <i class="sui-icon-close sui-md" aria-hidden="true"></i> <span class="sui-screen-reader-text"><?php esc_html_e( 'Close', 'wp-smushit' ); ?></span> </button> </div>
<div class="sui-box-body"> <p id="list-dialog-description"> <?php esc_html_e( 'Choose which folder you wish to smush. Smush will automatically include any images in subfolders of your selected folder.', 'wp-smushit' ); ?> </p> <div class="content"></div>
<?php wp_nonce_field( 'smush_get_dir_list', 'list_nonce' ); ?> <?php wp_nonce_field( 'smush_get_image_list', 'image_list_nonce' ); ?> </div>
<div class="sui-box-footer sui-content-right"> <span class="add-dir-loader"></span> <button class="sui-modal-close sui-button sui-button-blue wp-smush-select-dir" disabled id="wp-smush-select-dir"> <?php esc_html_e( 'SMUSH', 'wp-smushit' ); ?> </button> </div> </div> </div> </div>
|