sharing.phtml 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php $this->partial('aside_configure'); ?>
  2. <div class="post">
  3. <a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('gen.action.back_to_rss_feeds'); ?></a>
  4. <form method="post" action="<?php echo _url('configure', 'sharing'); ?>"
  5. data-simple='<div class="form-group" id="group-share-##key##"><label class="group-name">##label##</label><div class="group-controls"><div class="stick"><input type="text" id="share_##key##_name" name="share[##key##][name]" class="extend" value="##label##" placeholder="<?php echo _t('conf.sharing.share_name'); ?>" size="64" />
  6. <input type="url" id="share_##key##_url" name="share[##key##][url]" class="extend" value="" placeholder="<?php echo _t('gen.short.not_applicable'); ?>" size="64" disabled /><a href="#" class="remove btn btn-attention" data-remove="group-share-##key##"><?php echo _i('close'); ?></a></div>
  7. <input type="hidden" id="share_##key##_type" name="share[##key##][type]" value="##type##" /></div></div>'
  8. data-advanced='<div class="form-group" id="group-share-##key##"><label class="group-name">##label##</label><div class="group-controls">
  9. <input type="hidden" id="share_##key##_type" name="share[##key##][type]" value="##type##" />
  10. <div class="stick">
  11. <input type="text" id="share_##key##_name" name="share[##key##][name]" class="extend" value="" placeholder="<?php echo _t('conf.sharing.share_name'); ?>" size="64" />
  12. <input type="url" id="share_##key##_url" name="share[##key##][url]" class="extend" value="" placeholder="<?php echo _t('conf.sharing.share_url'); ?>" size="64" />
  13. <a href="#" class="remove btn btn-attention" data-remove="group-share-##key##"><?php echo _i('close'); ?></a></div>
  14. <a target="_blank" rel="noreferrer" class="btn" title="<?php echo _t('conf.sharing.more_information'); ?>" href="##help##"><?php echo _i('help'); ?></a>
  15. </div></div>'>
  16. <input type="hidden" name="_csrf" value="<?php echo FreshRSS_Auth::csrfToken(); ?>" />
  17. <legend><?php echo _t('conf.sharing'); ?></legend>
  18. <?php
  19. foreach (FreshRSS_Context::$user_conf->sharing as $key => $share_options) {
  20. $share = FreshRSS_Share::get($share_options['type']);
  21. $share->update($share_options);
  22. ?>
  23. <div class="form-group group-share" id="group-share-<?php echo $key; ?>">
  24. <label class="group-name">
  25. <?php echo $share->name(true); ?>
  26. </label>
  27. <div class="group-controls">
  28. <input type='hidden' id='share_<?php echo $key; ?>_type' name="share[<?php echo $key; ?>][type]" value='<?php echo $share->type(); ?>' />
  29. <div class="stick">
  30. <input type="text" id="share_<?php echo $key; ?>_name" name="share[<?php echo $key; ?>][name]" class="extend" value="<?php echo $share->name(); ?>" placeholder="<?php echo _t('conf.sharing.share_name'); ?>" size="64" data-leave-validation="<?php echo $share->name(); ?>"/>
  31. <?php if ($share->formType() === 'advanced') { ?>
  32. <input type="url" id="share_<?php echo $key; ?>_url" name="share[<?php echo $key; ?>][url]" class="extend" value="<?php echo $share->baseUrl(); ?>" placeholder="<?php echo _t('conf.sharing.share_url'); ?>" size="64" data-leave-validation="<?php echo $share->baseUrl(); ?>"/>
  33. <?php } else { ?>
  34. <input type="url" id="share_<?php echo $key; ?>_url" name="share[<?php echo $key; ?>][url]" class="extend" value="<?php echo $share->baseUrl(); ?>" placeholder="<?php echo _t('gen.short.not_applicable'); ?>" size="64" disabled/>
  35. <?php } ?>
  36. <a href='#' class='remove btn btn-attention' data-remove="group-share-<?php echo $key; ?>"><?php echo _i('close'); ?></a>
  37. </div>
  38. <?php if ($share->formType() === 'advanced') { ?>
  39. <a target="_blank" rel="noreferrer" class="btn" title="<?php echo _t('conf.sharing.more_information'); ?>" href="<?php echo $share->help(); ?>"><?php echo _i('help'); ?></a>
  40. <?php } ?>
  41. </div>
  42. </div>
  43. <?php } ?>
  44. <div class="form-group">
  45. <div class="group-controls">
  46. <select>
  47. <?php foreach (FreshRSS_Share::enum() as $share) { ?>
  48. <option value='<?php echo $share->type(); ?>' data-form='<?php echo $share->formType(); ?>' data-help='<?php echo $share->help(); ?>'>
  49. <?php echo $share->name(true); ?>
  50. </option>
  51. <?php } ?>
  52. </select>
  53. <a href='#' class='share add btn'><?php echo _i('add'); ?></a>
  54. </div>
  55. </div>
  56. <div class="form-group form-actions">
  57. <div class="group-controls">
  58. <button type="submit" class="btn btn-important"><?php echo _t('gen.action.submit'); ?></button>
  59. <button type="reset" class="btn"><?php echo _t('gen.action.cancel'); ?></button>
  60. </div>
  61. </div>
  62. </form>
  63. </div>