| 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 |
|