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 / settings-tab.php

settings-tab.php in WP-Stateless – Google Cloud Storage trunk, at static/views/settings-tab.php

22 lines 751 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2
3 <form method="post" action="">
4 <input type="hidden" name="action" value="stateless_settings">
5 <?php wp_nonce_field('wp-stateless-settings', '_smnonce'); ?>
6 <table class="form-table">
7 <tbody>
8
9 <?php if (is_network_admin()) : ?>
10 <?php require_once( dirname(__FILE__) . '/settings-sections/network.php'); ?>
11 <?php endif; ?>
12
13 <?php require_once( dirname(__FILE__) . '/settings-sections/general.php'); ?>
14 <?php require_once( dirname(__FILE__) . '/settings-sections/google-cloud-storage.php'); ?>
15 <?php require_once( dirname(__FILE__) . '/settings-sections/file-url.php'); ?>
16
17 </tbody>
18 </table>
19
20 <?php submit_button(null, 'primary', 'submit', true, array('id' => 'save-settings')); ?>
21 </form>
22