PHP code example of th3mouk / contact-bundle
1. Go to this page and download the library: Download th3mouk/contact-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
th3mouk / contact-bundle example snippets
new Th3Mouk\ContactBundle\Th3MoukContactBundle(),
namespace AppBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class ContactType extends AbstractType
{
/**
* @param FormBuilderInterface $builder
* @param array $options
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name')
->add('adress')
->add('zipCode')
->add('city')
->add('phone')
->add('email', 'email')
->add('message')
;
}
/**
* @param OptionsResolver $resolver
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'AppBundle\Entity\Contact',
));
}
/**
* @return string
*/
public function getName()
{
return 'app_contact_type';
}
}