Tagged Questions
0
votes
1answer
15 views
Multilingual entities with inheritance?
I need some multilingual entities in our application and I want to know what are the best practice for that.
Currently it solved with an 1:n relation, because there general information and language ...
-4
votes
3answers
59 views
Symfony2 “Fatal error: Class not Found”
This is NewEventController.php:
namespace Passtuff\RestBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Response;
use ...
0
votes
1answer
22 views
Why merged entities are updated on insert?
When inserting an entity, let say article:
Article::id
Article::text
Article::author -> User
The article has an author (ManyToOne)
User::id
User::name
User::created
if I fetch the user in the ...
0
votes
1answer
60 views
Symfony2 Form “collection” + Doctrine Column “array” = Empty form_widget
I have a simple question about Symfony2's form type "collection" in combination with doctrine's column "array".**
My Entity:
/**
* @Column(type="array", nullable=true)
* @var array
*/
private ...
0
votes
1answer
117 views
PHP import/export entities to XML, XLS, CSVā¦
Is there any PHP library that enables to import and/or export objects (actually Doctrine 2 entities) to various formats like XML, XLS, CSV, etc.
What I'm looking for is a generic semi-automatic ...
0
votes
0answers
29 views
Doctrine self refering foreign key (1:M) on child class of a superclass
Question:
Is it possible to have a child, which extends the superclass, that inheritance the self refering foreign key?
My situation:
Superclass with the foreign key. This foreign keys allows the ...
0
votes
0answers
25 views
Doctrine 2 - how to query a self referenced entity with joined associations to avoid extra SQL queries?
I have the following query:
$queryBuilder
->select(array('c', 'cu', 'e'))
->from('Common\Entity\Company', 'c')
->leftJoin('c.customer', 'cu')
...
1
vote
0answers
89 views
ZFCUser Identity within another entity
Is there a way where you can get the ZfcUser Identity or user_id in another entity?
I've been watching the following link, dealing with the servicemanager.
...
1
vote
0answers
60 views
Symfony: passing object to controller method
I'm following this guide in order to create a RESTFUL api:
http://williamdurand.fr/2012/08/02/rest-apis-with-symfony2-the-right-way/
In POST section, it uses object User as input of its edit method. ...
2
votes
1answer
124 views
Symfony 2.2, Doctrine 2: Complex relational entity retrieval
Background
I'm working on a portfolio website, the website is fairly simple, the bulk of the work is on the gallery. I have a a set of database tables all linked up to retrieve and filter galleries ...
0
votes
0answers
48 views
How to push FOS users list in my contract registration form?
I'm new in Symfony, and working on my first project. I'm using SonataAdmin, FOSUserBundle.
I've already created a ContractsBundle and a few simple entities called Contractor, Service, Contract; ...
0
votes
1answer
126 views
How remove registry from Many To Many relationship - Doctrine 2
I'm trying remove a registry from my database using doctrine 2, but I'm getting the follow error:
Catchable fatal error: Argument 1 passed to ...
2
votes
1answer
135 views
Symfony2 custom repository class
I am new to symfony2 and I am trying to create custom repository class and couldn' do it.
Here is what I am doing:
I added annotation to entity class ( MobilePhones )
...
4
votes
1answer
150 views
Symfony2: best approach to use business (repository) logic in entity or controller
I'm having a design issue in my project, related to where put some business logic.
I have three entities, Event, TicketOrder and Ticket. One Event has a lot of TicketOrders and one TicketOrder has a ...
0
votes
2answers
119 views
symfony2 create doctrine collection from query
Not sure if this is possible or not but im looking to create a doctrine collection from a query. The idea is to populate the collection with some pre-set values so i can update the database think of ...
0
votes
0answers
105 views
Can't make Symfony 2 UniqueEntity work
I am trying to use UniqueEntity validation in my Entity, but it does not work. I have read for hours and I still did not find a solution. I guess it's something easy to see, but I've never used it ...
0
votes
2answers
128 views
How to solve Class xxx is not a valid entity or mapped super class error
I have defined a class Setting like this:
<?php
use Doctrine\ORM\Mapping as ORM;
/** @ORM\Entity */
class Setting {
/** @ORM\Column(type="integer")
* @ORM\GeneratedValue
* ...
0
votes
1answer
152 views
Symfony2 - Looking for entity class in wrong place?
I have two entities, User and Lesson.
User is an extension of the Sonata User and is in
Application\Sonata\UserBundle\Entity\User
Lesson is in my own bundle 'LessonBundle'
Each lesson is owned ...
1
vote
1answer
170 views
UniqueEntity using Doctrine 2
I am using Zend Framework 2 and I have created a User Entity. Now I am trying to make the username field unique. However the following error is coming up.
[Semantical Error] The annotation ...
0
votes
2answers
43 views
getOneToMany returns repository
Executing the code below gives the following error:
Warning: Invalid argument supplied for foreach()
$stock = $offerDetail->getStock();
foreach($stock as $s)
{
...
}
the stock that is ...
0
votes
1answer
290 views
Symfony2 & Doctrine2: Custom Entity Repository Query to Retrieve Single Result if Joined Table has No Associated Rows
I have two entities/tables, one for Counties and one for Cities. A particular county has a OneToMany relationship to cities and I am trying to make a custom query in the Entity Repository to query a ...
1
vote
1answer
550 views
No identifier/primary key specified for Entity in doctrine 2
I am using Zend 2 Framework and I am trying to get data using Doctrine 2.
However the following error is coming in the Entity file.
Doctrine\ORM\Mapping\MappingException
No identifier/primary key ...
0
votes
1answer
173 views
Symfony 2 - Clone entity to different table
I am trying to clone an entity-object to a different table in Symfony 2 / Doctrine. Any idea how to do this?
After retrieving the object from the database I can clone it like this:
$newobject= clone ...
1
vote
1answer
66 views
Zend Framework 2 - Doctrine 2 - Use of Documentor Tags
I'm new to Doctrine and Zend. I realized that in nearly all entity models (whereever I read a tutorial) I saw these documentor tags like @var or @property.
They aren't required, right? So is it a ...
0
votes
1answer
655 views
Doctrine2 - XXX is not a valid entity or mapped super class // and config options
{sorry but my Hi everyone is automagically deleted}
I just started to use Doctrine2 and I have an error when I want to persist an entity. Here is my error: 'Class "Myapp\app\entity\user" is not a ...
0
votes
2answers
162 views
Symfony2+Doctrine2 Entity Type selection
I have an Image entity:
class Image {
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(type="string", nullable=true)
*/
...
4
votes
1answer
993 views
Doctrine Generate Entities Namespace Issue?
Ok I have one last problem with doctrine:generate:entities command
I run the below command and I get the expected file(s) in
...
0
votes
1answer
49 views
doctrine2 symfony2.1 entity all fields in $showMapper?
I don't know if this is possible or not or how to do this
Table A
id
name
feature_id
...
Table B
id_feature
label
url
description
...
I got 2 entity, i do a @ORM\ManyToOne(targetEntity="tableB")
...
0
votes
1answer
72 views
Symfony2: Entities issue
i have two entities template and div their code is as follows: (i generated it automatically via console)
<?php
namespace Tun\PublicBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* ...
1
vote
3answers
215 views
Symfony2 entity field
I developed an application with Symfony2 and I have problem.
I have User Entity class, in this class I have:
/**
* @ORM\OneToOne(targetEntity="UserProperty", mappedBy="user")
*/
protected ...
9
votes
2answers
490 views
Symfony2 and Doctrine2 : populate form with two Entity (a complicated scenario)
I have 5 entities:
User,
Person,
UserAffiliation,
PersonAffiliation and
Affiliation
Here is the schema:
Some details:
A WebUser is a Person who is registered to the website. For each ...
0
votes
0answers
163 views
php fatal error when creating a doctrine entity in symfony2
After generating a bundle with the command:
php app/console generate:bundle ānamespace=Etienne/InscriptionBundle
I have a file called
EtienneInscriptionBundle.php
in the folder
...
1
vote
1answer
205 views
Doctrine Entity with Custom Form Type
I've been following the Documentation on creating custom form types given in the docs:
http://symfony.com/doc/master/cookbook/form/create_custom_field_type.html#using-the-field-type
Having the ...
1
vote
1answer
1k views
Symfony2: spl_object_hash() expects parameter 1 to be object, string given in Doctrine
I am trying to populate the database with the object User and Person by executing
persist and flush.
First of all, I am creating the Person object and persist and flush it:
...
1
vote
1answer
405 views
Symfony2 + Doctrine: Create Entities from specific database that is not the default
The Symfony2 Cookbook provides information on how to create entities from existing schemas, but I haven't been able to find a way to import from another database called 'legacy' (see config.yml below) ...
0
votes
2answers
189 views
OneToOne relation with Doctrine2 and Symfony2
I'm trying to create a simple OneToOne relation between my User and Profile entity, here is my controller: http://pastie.org/5068108, my User entity: http://pastie.org/5068124 and my Profile entity : ...
1
vote
1answer
51 views
doctrine2: Entity's association changes after first call
i am using the latest version of doctrine: 2.3
when you call a generated association function, the first time everything is fine:
$authors = $book->getBookToAuthors();
//$authors = array(5)
but ...
0
votes
0answers
91 views
How can i remove all translations for given record?
Hi i have the following code:
/**
* Cleans texts of of the content with given ID
*
* @param integer $contentId ID of the content
* @return boolean
*/
public function ...
0
votes
1answer
559 views
How to set or change entity value before saving using Symfony2
I would like to change entity value in case if it's for example NULL.
Unfortunately my code causes exception - it seems that id isn't set although 'translation' record is created in database and id is ...
1
vote
1answer
571 views
Doctrine2 entities in multiple namespaces
I'm developing a web application using Zend Framework 2 which will be made of several modules, and I'd like to put the entity classes in the module to which they belong.
Is it possible to do this ...
3
votes
1answer
181 views
Symfony2/Doctine: load only subset of related entities
A Symfony2 application has a Job entity which has a tasks property, a collection of Task entities.
Job->getTasks() is used to iterate over a given job's collection of tasks. The Task entities ...
0
votes
2answers
125 views
Doctrine entity field not recognized at all
I am working with FOSUserBundle to authenticate. The authentication worked, so far so good. I have a couple of extra fields which populated nicely.
I then added a Roles-table (with the according ...
0
votes
1answer
242 views
Doctrine 2 entity association does not set value for foreign key
I'm encountering a problem with a Doctrine 2 entity association.
I have a User entity and an Agency entity. One Agency can employ multiple Users (the entities are simplified to show only my problem)
...
0
votes
1answer
71 views
Symfony2 / Doctrine2 - Get rows not present in other side of relation
I've got 2 entites, with its setters and getters:
/**
* @ORM\Entity
* @ORM\Table(name="users")
*/
class User
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* ...
0
votes
1answer
182 views
Doctrine 2 edit DQL in entity
I have several database tables with 2 primary keys, id and date. I do not update the records but instead insert a new record with the updated information. This new record has the same id and the date ...
4
votes
2answers
920 views
Non blank file input field in Symfony2 form
In my Doctrine entity, which is data_class for my form I have a file property defined like this:
/**
* Image.
*
* @Assert\NotBlank
* @Assert\File
* ...
1
vote
1answer
72 views
Proper place for human-readable representation of entity-based key
First some background. We recently converted from a Zend_Db_Table-based solution to entity-based solution (Doctrine). As our application grew, the table classes grew uglier and uglier. Some of the ...
0
votes
0answers
137 views
Doctrine Column definition where column does not exist in database
I have a User entity with a column definition that does not exist in the corresponding database table.
class User {
/**
* @column(name="activity" type="integer")
*/
private $activity;
}
...
0
votes
0answers
215 views
How do I merge or combine two Doctrine 2 entity instances into a single entity with all their relations?
Here's some example code:
$incident = new Incident();
$incident->setId(1);
$incident->setName('Incident 1');
$result = new Result();
$result->setId(1);
$result->setName('Result 1');
...
2
votes
1answer
2k views
How to use entityManager inside Entity?
I have this function in Entity class but the getDoctrine do not fond...
public function getObject()
{
$em = $this->getDoctrine()->getEntityManager();
switch($this->objectType)
{
...

