73 lines
3.4 KiB
PHTML
73 lines
3.4 KiB
PHTML
<form action="<?php echo _url('extension', 'configure', 'e', urlencode($this->getName())); ?>" method="post">
|
|
<input type="hidden" name="_csrf" value="<?php echo FreshRSS_Auth::csrfToken(); ?>" />
|
|
|
|
<div class="form-group">
|
|
<label class="group-name" for="wallabag_endpoint"><?php echo _t('ext.wallabag.endpoint'); ?></label>
|
|
<div class="group-controls">
|
|
<input type="url" name="wallabag_endpoint" id="wallabag_endpoint" value="<?php echo FreshRSS_Context::$user_conf->wallabag_endpoint; ?>">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="group-name" for="wallabag_client_id"><?php echo _t('ext.wallabag.client_id'); ?></label>
|
|
<div class="group-controls">
|
|
<input type="text" name="wallabag_client_id" id="wallabag_client_id" value="<?php echo FreshRSS_Context::$user_conf->wallabag_client_id; ?>">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="group-name" for="wallabag_client_secret"><?php echo _t('ext.wallabag.client_secret'); ?></label>
|
|
<div class="group-controls">
|
|
<input type="password" name="wallabag_client_secret" id="wallabag_client_secret" value="<?php echo FreshRSS_Context::$user_conf->wallabag_client_secret; ?>">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="group-name" for="wallabag_username"><?php echo _t('ext.wallabag.username'); ?></label>
|
|
<div class="group-controls">
|
|
<input type="text" name="wallabag_username" id="wallabag_username" value="<?php echo FreshRSS_Context::$user_conf->wallabag_username; ?>">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="group-name" for="wallabag_password"><?php echo _t('ext.wallabag.password'); ?></label>
|
|
<div class="group-controls">
|
|
<input type="password" name="wallabag_password" id="wallabag_password" value="<?php echo FreshRSS_Context::$user_conf->wallabag_password; ?>">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="group-name" for="wallabag_use_tags"><?php echo _t('ext.wallabag.use_tags'); ?></label>
|
|
<div class="group-controls">
|
|
<input type="checkbox" name="wallabag_use_tags" id="wallabag_use_tags" value="1" <?php echo (FreshRSS_Context::$user_conf->wallabag_use_tags ? 'checked' : ''); ?>>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="group-name" for="wallabag_add_tags"><?php echo _t('ext.wallabag.add_tags'); ?></label>
|
|
<div class="group-controls">
|
|
<input type="text" name="wallabag_add_tags" id="wallabag_add_tags" value="<?php echo FreshRSS_Context::$user_conf->wallabag_add_tags; ?>">
|
|
</div>
|
|
</div>
|
|
<fieldset>
|
|
<legend><?php echo _t('ext.wallabag.feeds'); ?>:</legend>
|
|
<?php
|
|
$feedDAO = FreshRSS_Factory::createFeedDao();
|
|
foreach ($feedDAO->listFeeds() as $feed) {
|
|
$fid = $feed->id();
|
|
$fname = $feed->name();
|
|
if (is_array(FreshRSS_Context::$user_conf->wallabag_feeds)) {
|
|
$fchecked = in_array("$fid", FreshRSS_Context::$user_conf->wallabag_feeds) ? 'checked' : '';
|
|
} else {
|
|
$fchecked = '';
|
|
}
|
|
echo '<div class="form-group">';
|
|
echo "<label class=\"group-name\" for=\"feed$fid\">$fname</label>";
|
|
echo '<div class="group-controls">';
|
|
echo "<input type=\"checkbox\" name=\"wallabag_feeds[]\" value=\"$fid\" id=\"feed$fid\" $fchecked>";
|
|
echo '</div></div>';
|
|
}
|
|
?>
|
|
</fieldset>
|
|
|
|
<div class="form-group form-actions">
|
|
<div class="group-controls">
|
|
<button type="submit" class="btn btn-important"><?php echo _t('gen.action.submit'); ?></button>
|
|
<button type="reset" class="btn"><?php echo _t('gen.action.cancel'); ?></button>
|
|
</div>
|
|
</div>
|
|
</form>
|