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-sections / network.php

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

40 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <tr>
2 <th scope="row"><?php _e('Settings Panel Visibility', ud_get_stateless_media()->domain); ?></th>
3
4 <td>
5 <fieldset>
6 <legend class="screen-reader-text"><span><?php _e('Settings Panel Visibility', ud_get_stateless_media()->domain); ?></span></legend>
7
8 <p>
9 <select name="sm[hide_settings_panel]" id="hide_settings_panel" <?php disabled( array_key_exists('hide_settings_panel', $sm->readonly) ); ?>>
10 <option value="false" <?php selected( $sm->hide_settings_panel, 'false' ); ?>><?php _e('Visible', ud_get_stateless_media()->domain); ?></option>
11 <option value="true" <?php selected( $sm->hide_settings_panel, 'true' ); ?>><?php _e('Hidden', ud_get_stateless_media()->domain); ?></option>
12 </select>
13 </p>
14
15 <p class="description"><?php _e("Control the visibility and access of the WP-Stateless settings panel within individual network sites."); ?></p>
16 </fieldset>
17 </td>
18 </tr>
19
20 <?php /* #152
21 <tr>
22 <th scope="row"><?php _e('Setup Assistant Visibility', ud_get_stateless_media()->domain); ?></th>
23
24 <td>
25 <fieldset>
26 <legend class="screen-reader-text"><span><?php _e('Setup Assistant Visibility', ud_get_stateless_media()->domain); ?></span></legend>
27
28 <p>
29 <select name="sm[hide_setup_assistant]" id="hide_setup_assistant" <?php disabled( array_key_exists('hide_setup_assistant', $sm->readonly) ); ?>>
30 <option value="false" <?php selected( $sm->hide_setup_assistant, 'false' ); ?>><?php _e('Visible', ud_get_stateless_media()->domain); ?></option>
31 <option value="true" <?php selected( $sm->hide_setup_assistant, 'true' ); ?>><?php _e('Hidden', ud_get_stateless_media()->domain); ?></option>
32 </select>
33 </p>
34
35 <p class="description"><?php _e("Control the visibility and access of the WP-Stateless setup assistant within individual network sites."); ?></p>
36 </fieldset>
37 </td>
38 </tr>
39 */ ?>
40