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