forked from wallabag/wallabag
Add CRUD for site credentials
This commit is contained in:
43
src/Wallabag/CoreBundle/Form/Type/SiteCredentialType.php
Normal file
43
src/Wallabag/CoreBundle/Form/Type/SiteCredentialType.php
Normal file
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace Wallabag\CoreBundle\Form\Type;
|
||||
|
||||
use Symfony\Component\Form\AbstractType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
|
||||
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;
|
||||
|
||||
class SiteCredentialType extends AbstractType
|
||||
{
|
||||
public function buildForm(FormBuilderInterface $builder, array $options)
|
||||
{
|
||||
$builder
|
||||
->add('host', TextType::class, [
|
||||
'label' => 'site_credential.form.host_label',
|
||||
])
|
||||
->add('username', TextType::class, [
|
||||
'label' => 'site_credential.form.username_label',
|
||||
])
|
||||
->add('password', PasswordType::class, [
|
||||
'label' => 'site_credential.form.password_label',
|
||||
])
|
||||
->add('save', SubmitType::class, [
|
||||
'label' => 'config.form.save',
|
||||
])
|
||||
;
|
||||
}
|
||||
|
||||
public function configureOptions(OptionsResolver $resolver)
|
||||
{
|
||||
$resolver->setDefaults([
|
||||
'data_class' => 'Wallabag\CoreBundle\Entity\SiteCredential',
|
||||
]);
|
||||
}
|
||||
|
||||
public function getBlockPrefix()
|
||||
{
|
||||
return 'site_credential';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user