deblan.tv/vendor/trinity/src/Trinity/Bundle/NotificationBundle/Form/Type/NotificationType.php
2015-03-02 21:57:49 +01:00

29 lines
757 B
PHP
Raw Permalink 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\NotificationBundle\Form\Type;
use Propel\PropelBundle\Form\BaseAbstractType;
use Symfony\Component\Form\FormBuilderInterface;
class NotificationType extends BaseAbstractType
{
protected $options = array(
'data_class' => 'Trinity\Bundle\NotificationBundle\Model\Notification',
'name' => 'notification',
);
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('contentRender');
$builder->add('logContentRender');
$builder->add('isRead');
$builder->add('userId');
$builder->add('templateId');
$builder->add('createdAt');
$builder->add('updatedAt');
}
}