2019-04-11 22:41:21 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* part-db version 0.1
|
|
|
|
* Copyright (C) 2005 Christoph Lechner
|
|
|
|
* http://www.cl-projects.de/
|
|
|
|
*
|
|
|
|
* part-db version 0.2+
|
|
|
|
* Copyright (C) 2009 K. Jacobs and others (see authors.php)
|
|
|
|
* http://code.google.com/p/part-db/
|
|
|
|
*
|
|
|
|
* Part-DB Version 0.4+
|
|
|
|
* Copyright (C) 2016 - 2019 Jan Böhmer
|
|
|
|
* https://github.com/jbtronics
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-08-12 22:41:58 +02:00
|
|
|
namespace App\Form\AdminPages;
|
2019-04-11 22:41:21 +02:00
|
|
|
|
|
|
|
|
2019-08-12 18:04:53 +02:00
|
|
|
use App\Entity\Base\StructuralDBElement;
|
2019-04-11 22:41:21 +02:00
|
|
|
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
|
|
|
|
use Symfony\Component\Form\AbstractType;
|
|
|
|
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
|
|
|
|
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
|
|
|
|
use Symfony\Component\Form\Extension\Core\Type\FileType;
|
|
|
|
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
2019-08-12 22:41:58 +02:00
|
|
|
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
|
2019-04-11 22:41:21 +02:00
|
|
|
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
|
|
|
use Symfony\Component\Form\FormBuilderInterface;
|
2019-04-13 19:03:45 +02:00
|
|
|
use Symfony\Component\Security\Core\Security;
|
2019-04-11 22:41:21 +02:00
|
|
|
|
2019-08-12 22:41:58 +02:00
|
|
|
class MassCreationForm extends AbstractType
|
2019-04-11 22:41:21 +02:00
|
|
|
{
|
2019-04-13 19:03:45 +02:00
|
|
|
protected $security;
|
|
|
|
|
|
|
|
public function __construct(Security $security)
|
|
|
|
{
|
|
|
|
$this->security = $security;
|
|
|
|
}
|
|
|
|
|
2019-04-11 22:41:21 +02:00
|
|
|
public function buildForm(FormBuilderInterface $builder, array $options)
|
|
|
|
{
|
|
|
|
|
|
|
|
$data = $options['data'];
|
|
|
|
|
2019-04-13 19:03:45 +02:00
|
|
|
//Disable import if user is not allowed to create elements.
|
2019-08-12 22:41:58 +02:00
|
|
|
$entity = new $data['entity_class']();
|
2019-04-13 19:03:45 +02:00
|
|
|
$perm_name = "create";
|
|
|
|
$disabled = ! $this->security->isGranted($perm_name, $entity);
|
|
|
|
|
2019-04-11 22:41:21 +02:00
|
|
|
$builder
|
2019-08-12 22:41:58 +02:00
|
|
|
->add('lines', TextareaType::class, ['data' => '', 'label' => 'mass_creation.lines',
|
|
|
|
'disabled' => $disabled, 'required' => true,
|
|
|
|
'attr' => ['placeholder' => 'mass_creation.lines.placeholder', 'rows' => 10]]);
|
|
|
|
if ($entity instanceof StructuralDBElement) {
|
|
|
|
$builder->
|
2019-04-28 14:18:11 +02:00
|
|
|
add('parent', EntityType::class, ['class' => $data['entity_class'], 'choice_label' => 'full_path',
|
|
|
|
'attr' => ['class' => 'selectpicker', 'data-live-search' => true], 'required' => false,
|
|
|
|
'label' => 'parent.label', 'disabled' => $disabled]);
|
2019-08-12 22:41:58 +02:00
|
|
|
}
|
2019-04-11 22:41:21 +02:00
|
|
|
|
2019-08-12 22:41:58 +02:00
|
|
|
$builder
|
2019-04-11 22:41:21 +02:00
|
|
|
//Buttons
|
2019-08-12 22:41:58 +02:00
|
|
|
->add('create', SubmitType::class, ['label' => 'mass_creation.btn', 'disabled' => $disabled]);
|
2019-04-11 22:41:21 +02:00
|
|
|
}
|
|
|
|
}
|