doctrine-extensions Questions
3
Solved
Im using Symfony 3.1 + Doctrine GEDMO extensions (via StofDoctrineExtensionsBundle). I've set my entity to have Sortable behavior:
<?php
namespace AppBundle\Entity\Manual;
use AppBundle\Entit...
Towline asked 19/11, 2016 at 10:51
2
Is anyone else having an issue gedmo/doctrine-extensions installing via composer?
The repository is public so I am not sure why it's saying it is a private repo
Cloning failed using an ssh key f...
Viol asked 4/9, 2015 at 11:0
1
Solved
I'm building an API with Symfony 3.4 and api-platform. I want to use soft delete on my entity. I've installed DoctrineExtensions and StofDoctrineExtensionsBundle.
config.yml:
doctrine:
dbal:
co...
Malversation asked 19/6, 2018 at 14:53
4
I'm trying to translate entities with gedmo doctrine extensions.
https://github.com/Atlantic18/DoctrineExtensions
I'm using yml as orm mapping file (auto generating entities).
orm.yml:
CS\ContentBu...
Colum asked 22/8, 2014 at 7:40
1
I have a Symfony 3.2 entity using Doctrine's Translatable extension.
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
use Symfony\Component\Seria...
Biddick asked 7/7, 2017 at 10:50
3
Solved
I'm using Symfony2.2 with StofDoctrineExtensionsBundle (and so Gedmo DoctrineExtensions).
I've a simple entity
/**
* @ORM\Entity
* @Gedmo\Loggable
* @ORM\Table(name="person")
*/
class Person {...
Gabbro asked 26/4, 2013 at 9:28
2
Solved
I'm looking at improving the speed of doctrine hydration. I've previously been using HYDRATE_OBJECT but can see that in many instances, that can be quite heavy to work with.
I'm aware that the fas...
Monomer asked 9/10, 2015 at 10:0
3
For development we have a single Symfony console command that executes other console commands in order to rebuild db, run fixtures etc.
As part of the process I need to run a few cherry-picked doc...
Bellyband asked 19/3, 2014 at 13:53
1
I want to log all changes of an entity. I looked into Loggable doctrine extension as provided by the StofDoctrineExtensionsBundle.
I got it working for fields that store simple data, e.g. string a...
Megilp asked 23/7, 2014 at 11:2
1
In a Symfony2 project I'm using the Loggable Doctrine Extension.
I saw that there is a LoggableListener.
Is there indeed an event that gets fired when a (loggable) field in a loggable entity chan...
Strophe asked 8/6, 2015 at 16:5
2
Solved
When usieing StofDoctrineExtensions (which is a Symfony2 port of Gedmo Doctrine Extensions) Sortable behaviour I kept on getting this error:
This repository can be attached only to ORM sortable...
Halophyte asked 19/1, 2013 at 12:14
1
Solved
I have added this line to my composer.json:
"gedmo/doctrine-extensions": "dev-master"
And this is inside my module's module.config.php:
'doctrine' => array(
'driver' => array(
__NAMESPA...
Darwin asked 11/10, 2012 at 13:48
1
© 2022 - 2024 — McMap. All rights reserved.