Tac Tacelosky
Tac Tacelosky
Everything else in bundles has moved away from /Resources, so I think the path mentioned here isn't right.
Is there a way to output the event data as ICS or iCal? That would allow the data from this bundle to be integrate with Google Calendars and other calendars.
Hi, tattali, great bundle! I put together a demo using the CRUD example (Booking.php), wrapped it in a bootstrap admin theme, and it's available now at https://calendar-bundle-demo.herokuapp.com/ The source code...
I'm trying to figure out how to load XML into a graph ```php $url = "http://njh.me/foaf.rdf"; $foaf = new Graph($url); $foaf->load(); $me = $foaf->primaryTopic(); // $me is set! $contents =...
Is that really the recommended way to install? Shouldn't the user simply set minimum-stability and prefer-stable in composer.json? In the github workflow tools, I'm getting this warning: ``` Run composer...
With automapping on, I'm getting validation errors for anything using the Timestampable trait ```php #[Assert\EnableAutoMapping] class MyEntity { use Timestampable; ```  Both values are indeed set. It has something...
```php /** * @Route("/blog/{page}", condition="service('flagception.manager.feature_manager').isActive('feature_123')") */ public function listAction($page) { // ... } ``` For Symfony 6.1 users, this feels a bit cleaner than setting a value in the routing...
```php #[Feature(name: "abc")] #[Route('/demo', name: 'app_demo')] public function demo(): Response { return $this->render('app/index.html.twig', [ 'controller_name' => 'Demo', ]); } ``` works now, as does using this at the controller class...
The latest version of Symfony allows the routing condition to access a service, so developers can write: ```php #[Route('/demo', name: 'app_demo', condition: "service('flagception.manager.feature_manager').isActive('beta')")] public function demo(): Response { return $this->render('app/index.html.twig',...
All the cool kids are using attributes instead of annotations... I'll submit a PR in a bit, so we can do: ```php #[Feature(name: "abc")] #[Route('/demo', name: 'app_demo')] public function demo():...