Changeset 446963
- Timestamp:
- 10/04/2011 01:49:14 AM (14 years ago)
- File:
-
- 1 edited
-
ui-labs/trunk/settings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ui-labs/trunk/settings.php
r446942 r446963 7 7 <tr valign="top"> 8 8 <th scope="row"><strong>Experiment 1:</strong> Colour-coded Post Statuses</th> 9 <td><input type="checkbox" name="poststatuses" value="yes"<? =get_option('poststatuses') == 'yes' ? ' checked' : '';?> /></td>9 <td><input type="checkbox" name="poststatuses" value="yes"<?php echo get_option('poststatuses') == 'yes' ? ' checked' : '';?> /></td> 10 10 </tr> 11 11 12 12 <tr valign="top"> 13 13 <th scope="row"><strong>Experiment 2:</strong> Classic WordPress Admin Bar</th> 14 <td><input type="checkbox" name="adminbar" value="yes"<? =get_option('adminbar') == 'yes' ? ' checked' : '';?> /></td>14 <td><input type="checkbox" name="adminbar" value="yes"<?php echo get_option('adminbar') == 'yes' ? ' checked' : '';?> /></td> 15 15 </tr> 16 16 17 17 <tr valign="top"> 18 18 <th scope="row"><strong>Experiment 3:</strong> Identify This Server</th> 19 <td><input type="checkbox" name="identify" value="yes"<? =get_option('identify') == 'yes' ? ' checked' : '';?> /></td>19 <td><input type="checkbox" name="identify" value="yes"<?php echo get_option('identify') == 'yes' ? ' checked' : '';?> /></td> 20 20 </tr> 21 21 <tr valign="top"> … … 23 23 <td> 24 24 <select id="servertype" name="servertype"> 25 <option value="uilabs-blank"<? =get_option('servertype') == 'uilabs-blank' ? ' selected' : '';?>>--</option>26 <option value="uilabs-development"<? =get_option('servertype') == 'uilabs-development' ? ' selected' : '';?>>Development</option>27 <option value="uilabs-staging"<? =get_option('servertype') == 'uilabs-staging' ? ' selected' : '';?>>Staging</option>28 <option value="uilabs-live"<? =get_option('servertype') == 'uilabs-live' ? ' selected' : '';?>>Live</option>25 <option value="uilabs-blank"<?php echo get_option('servertype') == 'uilabs-blank' ? ' selected' : '';?>>--</option> 26 <option value="uilabs-development"<?php echo get_option('servertype') == 'uilabs-development' ? ' selected' : '';?>>Development</option> 27 <option value="uilabs-staging"<?php echo get_option('servertype') == 'uilabs-staging' ? ' selected' : '';?>>Staging</option> 28 <option value="uilabs-live"<?php echo get_option('servertype') == 'uilabs-live' ? ' selected' : '';?>>Live</option> 29 29 </select> 30 30 </td>
Note: See TracChangeset
for help on using the changeset viewer.