The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
4 views

Relative slug retrieval DoctrineExtensions

I have two entities, which are related and both have a slug created by @Gedmo\Slug according to this example class Relation { /** * @ORM\Column(type="string", length=255) */ ...
0
votes
0answers
19 views

Symfony2: Make a form to choose language using Doctrine Extensions Translatable behavior

I have installed StofDoctrineExtensionsBundle in my Symfony2 project and I have created and Entity called 'Buttons' which has 2 translatable fields, 'title' and 'content'. I would like to do a form ...
0
votes
0answers
12 views

How to create schema for Doctrine Extensions?

I've integrated Doctrine 2 in Codeingiter project. I'm using Joel Verhagen's version of cli. I've integrated Doctrine Extensions as shown in this help file. The doctrine initialization code regarding ...
0
votes
0answers
32 views

In Gedmo Doctrine Extension - How can I blacklist a field for @Timestampable(type=“update”) as opposed to whitelist a field?

I have a Doctrine Mongodb ODM Document, representing a user. In it I have date fields for "createdAt", "updatedAt" and "lastLoginAt". I'm using Gedmo's Doctrine Extensions' @Timestampable ...
3
votes
1answer
74 views

Gedmo\Loggable logs data that doesn't have changed

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 { ...
0
votes
1answer
34 views

Doctrine Extensions [Sluggable] Integrity constraint violation: column slug is not unique

I use inheritence between classes like this: Vehicle---Car----SportCar Vehicle---Truck---TruckMachine my class Vehicle has entity annotation and bidirectional relationship (manytomany) . For Car ...
0
votes
0answers
30 views

DoctrineExtensions and setHint

I'm using doctrine & doctrineExtensions setHint since a while to retrieve all translations in one query. Unfortunatly since symfony and doctrine update This doesn't work any more... The following ...
0
votes
0answers
54 views

Override a property and make it Translatable in Doctrine Translatable / Symfony2

I have a mapped-superclass with a string property 'name' which belongs to a bundle (SyliusAssortmentBundle, actually). I have a class in my bundles that inherits from that mapped-superclass. I'd like ...
0
votes
1answer
43 views

Symfony2 Doctrine SoftDeletable and JMSSerializerBundle not working together

I'm using the Gedmo SoftDeletable filter for Symfony2 and Doctrine (https://github.com/l3pp4rd/DoctrineExtensions/blob/master/doc/softdeleteable.md) I'm also using the JMSSerializerBundle to ...
1
vote
1answer
106 views

Is there a default locale in doctrine extensions translatable?

I have implemented the translatable extension. I use a Category (tree extension ) entity and a CategoryTranslation entity as shown in the documentation. All my titles in the Category entity are in ...
0
votes
1answer
141 views

Combining @Gedmo\NestedTree and @ORM\UniqueEntity

I'm creating a folder structure implemented with the NestedTree behaviour. Furthermore, I don't want that two folders may have the same name if they are siblings. For this, I use the combination of ...
2
votes
1answer
132 views

Ordering entities with sortable behavior in Doctrine 2 (Symfony 2)

I've created an entity that has a Sortable behavior and have one question about using it. The methods for setting and getting positions are not enough for me, so I want to do simple moveUp and ...
0
votes
2answers
97 views

How to fix “This repository can be attached only to ORM sortable listener” error in Gedmo sortable?

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 ...
0
votes
0answers
31 views

Doctrine2 extra column or table for extension

I want to make Doctrine 2 extension, that will add an extra field to entity. I will also need new table. Field and table will be based on my custom annotation added to that entity. I think it must be ...
0
votes
0answers
143 views

Symfony2 DoctrineExtensions NestedTree without parent column

I've again a problem with Symfony2 and Doctrine2. I'm currently working on a project where we migrate a Symfony1 project to Symfony2. Most important for the project is not to change database structure ...
0
votes
0answers
108 views

DoctrineExtensions(Beberlei) does not work - Doctrine 2

I installed the Beberlei DoctrineExtensions but can't get the mysql DAY and YEAR to work. I have this in my autoloader: $doctrineExtensions = new Doctrine\Common\ClassLoader('DoctrineExtensions', ...
0
votes
0answers
129 views

How to pass setDefaultLocale to Translatable Doctrine 2.2 extension using Zend Framework 1.x

I have a real problem, Im wondering how should I pass the default locale to my translate extension in Doctrine. Im using Bisna container to configure Doctrine in ZF. It looks like this: ; DBAL ...
0
votes
2answers
356 views

Fatal Error when installing stof bundle and doctrine extensions (tree)

Here is the problem : I don't succeed to install stof bundle with symphony 2.0 How I proceed : I add this lines in deps file : [GedmoDoctrineExtensions] ...
0
votes
1answer
501 views

How to configure doctrine extensions in Zend Framework 2?

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( ...