| 22 | | <br /> |
| 23 | | <div class="mobileform"> |
| 24 | | <input type="radio" value="mobile_read" name="<?= rss_item_id(); ?>" <?php |
| 25 | | if( !$GLOBALS['rss'] -> currentItem -> isUnread && !$GLOBALS['rss'] -> currentItem -> isSticky ) { |
| 26 | | echo "checked"; |
| 27 | | } |
| 28 | | ?> >read |
| 29 | | <input type="radio" name="<?= rss_item_id(); ?>" <?php |
| 30 | | if( $GLOBALS['rss'] -> currentItem -> isUnread ) { |
| 31 | | echo "checked"; |
| 32 | | } |
| 33 | | ?> >unread |
| 34 | | <input type="radio" value="mobile_sticky" name="<?= rss_item_id(); ?>" <?php |
| 35 | | if( $GLOBALS['rss'] -> currentItem -> isSticky ) { |
| 36 | | echo "checked"; |
| 37 | | } |
| 38 | | ?> >sticky |
| 39 | | </div> |
| | 29 | <div class="mobileform"> |
| | 30 | <label for="">State:</label> |
| | 31 | <select name="<?= rss_item_id(); ?>"> |
| | 32 | <option value="mobile_read" <?php |
| | 33 | if( !$GLOBALS['rss'] -> currentItem -> isUnread && !$GLOBALS['rss'] -> currentItem -> isSticky ) { |
| | 34 | echo "selected=\"selected\""; |
| | 35 | } ?>>Read</option> |
| | 36 | <option value="mobile_unread" <?php |
| | 37 | if( $GLOBALS['rss'] -> currentItem -> isUnread ) { |
| | 38 | echo "selected=\"selected\""; |
| | 39 | } |
| | 40 | ?>>Unread</option> |
| | 41 | <option value="mobile_sticky" <?php |
| | 42 | if( $GLOBALS['rss'] -> currentItem -> isSticky ) { |
| | 43 | echo "selected=\"selected\""; |
| | 44 | } |
| | 45 | ?>>Sticky</option> |
| | 46 | </select> |
| | 47 | </div> |