Added new tag form in mobile view for Material theme

Fix #2376
This commit is contained in:
Nicolas Lœuillet
2016-11-07 09:05:04 +01:00
parent 41c2178685
commit df30af69d2
15 changed files with 51 additions and 13 deletions

View File

@ -3,6 +3,7 @@
namespace Wallabag\CoreBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
@ -12,7 +13,15 @@ class NewTagType extends AbstractType
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('label', TextType::class, ['required' => true])
->add('label', TextType::class, [
'required' => true,
'attr' => [
'placeholder' => 'tag.new.placeholder',
],
])
->add('add', SubmitType::class, [
'label' => 'tag.new.add',
])
;
}