Tagged Questions
0
votes
1answer
29 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
2answers
122 views
Symfony Roles as Entities Form issue
I have a custom handler for roles like as entity and many to many relationship like so:
<?php
namespace Digital\UserBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use ...
0
votes
1answer
459 views
Symfony form collection
I'm trying to add a formType in a other form type.
CustomerType:
class CustomerType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
...
0
votes
0answers
162 views
validate Min option of integer field in Symfony2.1 application
I created my form with this code :
public function creerConferenceAction($id = null) {
$message = '';
if (isset($id)) {
$conference = $this->getDoctrine()
...
0
votes
1answer
52 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")
...
1
vote
3answers
217 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 ...
1
vote
1answer
411 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) ...
3
votes
1answer
557 views
Symfony2 validation doesn't work when Entity Relationships/Associations
Forgive my English.
controller
public function indexAction(Request $request)
{
$user = $this->container->get('security.context')->getToken()->getUser();
$owner = ...
1
vote
3answers
1k views
Symfony forms. File upload
Trying to manage file upload with Entity, but i get this error:
Fatal error: Call to a member function move() on a non-object in /home/projectpath/src/BS/MyBundle/Entity/Items.php on line 327 Call ...
0
votes
1answer
590 views
Symfony2 - Translate entity field type options
I'm using the FormBuilder to create my form. That works fine. The problem is my "Licence Object" which creates an select field with options. These options should be translated. But how to do that?
...