Made group creation possible (open groups only, yet)
This commit is contained in:
25
src/KekRozsak/FrontBundle/Form/Type/GroupType.php
Normal file
25
src/KekRozsak/FrontBundle/Form/Type/GroupType.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace KekRozsak\FrontBundle\Form\Type;
|
||||
|
||||
use Symfony\Component\Form\AbstractType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
|
||||
class GroupType extends AbstractType
|
||||
{
|
||||
public function buildForm(FormBuilderInterface $builder, array $options)
|
||||
{
|
||||
$builder->add('name', null, array(
|
||||
'label' => 'A csoport neve',
|
||||
));
|
||||
|
||||
$builder->add('description', 'ckeditor', array(
|
||||
'label' => 'A csoport leírása',
|
||||
));
|
||||
}
|
||||
|
||||
public function getName()
|
||||
{
|
||||
return 'group';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user