deblan.tv/vendor/trinity/src/Trinity/Bundle/NewsletterBundle/Form/Type/NewsletterFilterType.php
2016-06-20 11:37:14 +02:00

63 lines
1.5 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace Trinity\Bundle\NewsletterBundle\Form\Type;
use Propel\PropelBundle\Form\BaseAbstractType;
use Symfony\Component\Form\FormBuilderInterface;
class NewsletterFilterType extends BaseAbstractType
{
protected $options = array(
'data_class' => 'Trinity\Bundle\NewsletterBundle\Model\Newsletter',
'name' => 'newsletter_filter',
'models' => array(),
'csrf_protection' => false,
);
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('name');
$builder->add(
'classKeyValue',
'choice',
array(
'choices' => self::getModels(),
'label' => 'Modèle',
'required' => false,
'mapped' => false
)
);
$builder->add(
'sentAt',
'datetime',
array(
'widget' => 'single_text',
'input' => 'string',
'format' => 'yyyy-MM-dd hh:mm:ss',
'with_seconds' => true,
'attr' => array(
'class' => 'datetimepicker',
),
)
);
}
public function getModels()
{
$models = array();
if (is_array($this->getOption('models'))) {
foreach ($this->getOption('models') as $model => $settings) {
$models[$model] = $settings['title'];
}
}
return $models;
}
}