diff options
| author | 2014-03-27 20:36:51 +0100 | |
|---|---|---|
| committer | 2014-03-27 20:36:51 +0100 | |
| commit | 9d87f2f0aa8306c3e07a79d1a100b4d41ea8bc72 (patch) | |
| tree | f7685e6c6dff2dc4c75b8d4b1b1dd16f69b8bd57 /app/views/importExport | |
| parent | c8aa451c768a3d4dfce3d19648f3c8420dedb74c (diff) | |
Export is fully implemented
- Export list of feeds (OPML)
- Export list of favourites (JSON)
- Export list of articles per feed (JSON)
Diffstat (limited to 'app/views/importExport')
| -rw-r--r-- | app/views/importExport/index.phtml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/importExport/index.phtml b/app/views/importExport/index.phtml index d8c76543e..b82e0d26b 100644 --- a/app/views/importExport/index.phtml +++ b/app/views/importExport/index.phtml @@ -33,11 +33,11 @@ <?php echo Minz_Translate::t ('export_starred'); ?> </label> - <label class="checkbox" for="export_all"> - <input type="checkbox" name="export_all" id="export_all" value="1" /> - <?php echo Minz_Translate::t ('export_all'); ?> - <?php echo FreshRSS_Themes::icon('help'); ?> <?php echo Minz_Translate::t('export_all_is_long'); ?> - </label> + <select name="export_feeds[]" size="10" multiple="multiple"> + <?php foreach ($this->feeds as $feed) { ?> + <option value="<?php echo $feed->id(); ?>"><?php echo $feed->name(); ?></option> + <?php } ?> + </select> </div> </div> |
