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

45 lines
966 B
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\UserBundle\Form\Type;
use Propel\PropelBundle\Form\BaseAbstractType;
use Symfony\Component\Form\FormBuilderInterface;
class UserLogType extends BaseAbstractType
{
protected $options = array(
'data_class' => 'FOS\UserBundle\Propel\UserLog',
'name' => 'userlog',
);
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add(
'user',
'model',
array(
'required' => false,
'class' => '\FOS\UserBundle\Propel\User'
)
);
$builder->add(
'message',
'textarea'
);
$builder->add(
'createdAtToString',
'text',
array(
'attr' => array(
'class' => 'datetimepicker',
),
)
);
}
}