mirror of
https://github.com/YunoHost-Apps/freshrss_ynh.git
synced 2024-09-03 18:36:33 +02:00
52 lines
1.9 KiB
PHTML
Executable file
52 lines
1.9 KiB
PHTML
Executable file
<?php $this->partial ('aside_feed'); ?>
|
|
|
|
<div class="post ">
|
|
<a href="<?php echo _url ('index', 'index'); ?>"><?php echo Minz_Translate::t ('back_to_rss_feeds'); ?></a>
|
|
|
|
<form method="post" action="<?php echo _url('importExport', 'import'); ?>" enctype="multipart/form-data">
|
|
<legend><?php echo Minz_Translate::t ('import'); ?></legend>
|
|
<div class="form-group">
|
|
<label class="group-name" for="file"><?php echo Minz_Translate::t ('file_to_import'); ?></label>
|
|
<div class="group-controls">
|
|
<input type="file" name="file" id="file" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-actions">
|
|
<div class="group-controls">
|
|
<button type="submit" class="btn btn-important"><?php echo Minz_Translate::t ('import'); ?></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<?php if (count($this->feeds) > 0) { ?>
|
|
<form method="post" action="<?php echo _url('importExport', 'export'); ?>">
|
|
<legend><?php echo Minz_Translate::t ('export'); ?></legend>
|
|
<div class="form-group">
|
|
<div class="group-controls">
|
|
<label class="checkbox" for="export_opml">
|
|
<input type="checkbox" name="export_opml" id="export_opml" value="1" checked="checked" />
|
|
<?php echo Minz_Translate::t ('export_opml'); ?>
|
|
</label>
|
|
|
|
<label class="checkbox" for="export_starred">
|
|
<input type="checkbox" name="export_starred" id="export_starred" value="1" checked="checked" />
|
|
<?php echo Minz_Translate::t ('export_starred'); ?>
|
|
</label>
|
|
|
|
<select name="export_feeds[]" size="<?php echo min(10, count($this->feeds)); ?>" multiple="multiple">
|
|
<?php foreach ($this->feeds as $feed) { ?>
|
|
<option value="<?php echo $feed->id(); ?>"><?php echo $feed->name(); ?></option>
|
|
<?php } ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-actions">
|
|
<div class="group-controls">
|
|
<button type="submit" class="btn btn-important"><?php echo Minz_Translate::t ('export'); ?></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<?php } ?>
|
|
</div>
|