PluginProbe
WP-Stateless – Google Cloud Storage / trunk
WP-Stateless – Google Cloud Storage vtrunk
4.4.3 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.3.0 2.3.1 2.3.2 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 All 62 releases
wp-stateless / static / views / status-sections / info.php

info.php in WP-Stateless – Google Cloud Storage trunk, at static/views/status-sections/info.php

50 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 <div class="metabox-holder">
3 <div class="postbox">
4 <h2 class="hndle stateless-info-heading">
5 <?php _e('Info', ud_get_stateless_media()->domain); ?>
6 <div>
7 <span class="stateless-info-copy-success"><?php _e('Copied!', ud_get_stateless_media()->domain); ?></span>
8 <button type="button" class="button copy-button" data-clipboard-text="<?php echo $copy_text; ?>"><?php _e('Copy Info to Clipboard', ud_get_stateless_media()->domain); ?></button>
9 </div>
10 </h2>
11
12 <div class="inside">
13 <div class="main">
14
15 <div id="stateless-info">
16
17 <?php foreach( $sections as $key => $section ) : ?>
18
19 <h3 class="stateless-info-heading">
20 <button class="stateless-info-button" data-section="stateless-info-block-<?php echo $key; ?>" type="button">
21 <span class="title"><?php echo $section->title; ?></span>
22 <span class="dashicons dashicons-arrow-down-alt2"></span>
23 </button>
24 </h3>
25
26 <div id="stateless-info-block-<?php echo $key; ?>" class="stateless-info-block hidden"\>
27 <table class="widefat striped" role="presentation">
28 <tbody>
29
30 <?php foreach( $section->rows as $key => $row ) : ?>
31 <tr class="<?php echo $key; ?>">
32 <td class="label"><?php echo $row->label; ?></td>
33 <td class="value"><?php echo $row->value; ?></td>
34 </tr>
35 <?php endforeach; ?>
36
37 </tbody>
38 </table>
39 </div>
40
41 <?php endforeach; ?>
42
43 </div> <!-- id="stateless-info" -->
44
45 </div> <!-- class="main" -->
46 </div> <!-- class="inside" -->
47
48 </div>
49 </div>
50