[Symfony2] Fullcalendar bundle ADesigns pb filter

Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\Request; use ADesigns\CalendarBundle\Event\CalendarEvent; use Symfony\Component\Form\AbstractType; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\RedirectResponse

1
API Platform avec une relation ManyToOne

Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\HttpKernel\KernelEvents; use ApiPlatform\Core\EventListener\EventPriorities; use App\Entity\Client; use App\Entity\Entreprise; use Symfony\Component\HttpKernel\Event\ViewEvent; use Symfony

4
Modifier contenu texte site multilingue via l'admin du site

Symfony et je suis actuellement la "formation Symfony par l'exemple" (qui est très bien faite au passage !), et j'aimerais créer une administration sur mon site multilingue, où je peux

0
probléme d'affiche image depuis autre entité

Symfony\Component\Validator\Constraints as Assert; use Symfony\Component\HttpFoundation\File\UploadedFile; use Doctrine\Common\Collections\ArrayCollection; use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; /** * Equipe * * @ORM\Table() * @ORM\Entity(repositoryClass

0
[FOS] enregistrement utilisateur

symfony\symfony\src\Symfony\Component\PropertyAccess\PropertyAccessor.php on line 486 and defined ``` Voilà mon entité Users après surcharge : ```

0
erreur 500 juste après installation

Symfony\\Component\\Dotenv\\Dotenv::populate() must be an instance of Symfo ny\\Component\\Dotenv\\void, none returned in /var/www/site/vendor/symfony/dotenv/Dotenv.php:95\nStack trace:\n#0 /var/www/site/vendor/symfony/dotenv/Dotenv.php(57): Symfony\\Co mponent\\Dotenv

10
Laravel, l'avenir des Frameworks (en France) ?

symfony est Frameworks le + utilisé de France. Donc sur ce forum j'immagine qu'il y a des connaisseurs de Laravel et (ou) de Symfony. Donc j'ai quelques questions

8
Tester un service ou un bundle dans Symfony3

Symfony\Bundle\FrameworkBundle\Test\WebTestCase; use Doctrine\ORM\EntityManager; use Symfony\Component\HttpFoundation\RequestStack; use Symfony\Component\Routing\Router; use JMS\Serializer\Serializer; class FakeType extends MSFBaseType{ public function configure

0
je peux accéder à les pages

Symfony\Component\HttpFoundation\Request; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use FOS\RestBundle\Controller\Annotations\RouteResource; use Symfony\Component\HttpFoundation\JsonResponse; use FOS\RestBundle\View\ViewHandler; use FOS\RestBundle\View

3
Personnalisation twig d'un formtype

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; class RegistrationType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('roles', 'collection', array( 'type' => 'choice', 'options' => array( 'label

8