aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/Type/FeedType.php
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2017-07-09 18:45:39 +0200
committerThomas Citharel <tcit@tcit.fr>2017-07-09 18:45:39 +0200
commit1554eb0adac470151d9668d55ce1450c64f862d9 (patch)
treea373af783ba1d53329be9790a0f672f55cd961ec /src/Wallabag/CoreBundle/Form/Type/FeedType.php
parentf04611c711715064cd7a23d4dc51bc703a8dbeef (diff)
downloadwallabag-1554eb0adac470151d9668d55ce1450c64f862d9.tar.gz
wallabag-1554eb0adac470151d9668d55ce1450c64f862d9.tar.zst
wallabag-1554eb0adac470151d9668d55ce1450c64f862d9.zip
Rebase & Rename all rss to feeds
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'src/Wallabag/CoreBundle/Form/Type/FeedType.php')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/FeedType.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/FeedType.php b/src/Wallabag/CoreBundle/Form/Type/FeedType.php
new file mode 100644
index 00000000..9b34daf4
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Form/Type/FeedType.php
@@ -0,0 +1,36 @@
1<?php
2
3namespace Wallabag\CoreBundle\Form\Type;
4
5use Symfony\Component\Form\AbstractType;
6use Symfony\Component\Form\Extension\Core\Type\SubmitType;
7use Symfony\Component\Form\FormBuilderInterface;
8use Symfony\Component\OptionsResolver\OptionsResolver;
9
10class FeedType extends AbstractType
11{
12 public function buildForm(FormBuilderInterface $builder, array $options)
13 {
14 $builder
15 ->add('feed_limit', null, [
16 'label' => 'config.form_feed.feed_limit',
17 'property_path' => 'feedLimit',
18 ])
19 ->add('save', SubmitType::class, [
20 'label' => 'config.form.save',
21 ])
22 ;
23 }
24
25 public function configureOptions(OptionsResolver $resolver)
26 {
27 $resolver->setDefaults([
28 'data_class' => 'Wallabag\CoreBundle\Entity\Config',
29 ]);
30 }
31
32 public function getBlockPrefix()
33 {
34 return 'feed_config';
35 }
36}