FreshRSS-Extensions/xExtension-YouTube/configure.phtml
2025-02-08 20:32:27 +01:00

52 lines
2.1 KiB
PHTML

<?php
declare(strict_types=1);
/** @var YouTubeExtension $this */
?>
<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">
<div class="group-controls">
<label class="checkbox" for="yt_autosize">
<input type="checkbox" id="yt_autosize" name="yt_autosize" value="1" <?php echo $this->isAutoSize() ? 'checked' : ''; ?>>
<?php echo _t('ext.yt_videos.autosize'); ?>
</label>
</div>
<label class="group-name" for="yt_height"><?php echo _t('ext.yt_videos.height'); ?></label>
<div class="group-controls">
<input type="number" id="yt_height" name="yt_height" value="<?php echo $this->getHeight(); ?>" min="50" data-leave-validation="1">
</div>
<label class="group-name" for="yt_width"><?php echo _t('ext.yt_videos.width'); ?></label>
<div class="group-controls">
<input type="number" id="yt_width" name="yt_width" value="<?php echo $this->getWidth(); ?>" min="100" data-leave-validation="1">
</div>
<div class="group-controls">
<label class="checkbox" for="yt_show_content">
<input type="checkbox" id="yt_show_content" name="yt_show_content" value="1" <?php echo $this->isShowContent() ? 'checked' : ''; ?>>
<?php echo _t('ext.yt_videos.show_content'); ?>
</label>
</div>
<div class="group-controls">
<label class="checkbox" for="yt_nocookie">
<input type="checkbox" id="yt_nocookie" name="yt_nocookie" value="1" <?php echo $this->isUseNoCookieDomain() ? 'checked' : ''; ?>>
<?php echo _t('ext.yt_videos.use_nocookie'); ?>
</label>
</div>
</div>
<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>
<p>
<?php echo _t('ext.yt_videos.updates'); ?>
<a href="https://github.com/kevinpapst/freshrss-youtube" target="_blank">GitHub</a>.
</p>