Symfony2 Mongodb Doctrine Error spl_object_hash() - mongodb

I get
Warning: spl_object_hash() expects parameter 1 to be object, boolean given in /Path/vendor/doctrine-mongodb-odm/lib/Doctrine/ODM/MongoDB/UnitOfWork.php line 1504
error when I try to do $dm->flush();
I persist object like this
$eve = new Event();
$eve->setEvent($event);
Here $event is array which gets converted to object using the setEvent() function.
The event class is given below.
<?php
namespace CE\MainBundle\Document;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
/**
* #MongoDB\Document(collection="events")
* #MongoDB\Index(keys={"coordinates"="2d"})
*/
Class Event{
/**
* #MongoDB\Id
*/
protected $id;
/**
* #MongoDB\String
* #MongoDB\Index(unique=true,order="asc")
*/
protected $eid;
/**
* #MongoDB\Int
*/
protected $start_time;
/**
* #MongoDB\Int
*/
protected $end_time;
/**
* #MongoDB\String
*/
protected $title;
/**
* #MongoDB\String
*/
protected $description;
/**
* #MongoDB\String
*/
protected $host;
/**
* #MongoDB\String
*/
protected $location;
/**
* #MongoDB\String
*/
protected $pic_square;
/**
* #MongoDB\EmbedOne(targetDocument="Coordinates")
*/
protected $coordinates=array();
/**
* #MongoDB\Int
* #MongoDB\Index(order="asc")
*/
protected $city_id;
/**
* #MongoDB\String
*/
protected $city_name;
/**
* #MongoDB\String
*/
protected $country;
/**
* #MongoDB\String
*/
protected $timezone;
/**
* #MongoDB\String
*/
protected $owner;
/**
* #MongoDB\Collection
* #MongoDB\Index(order="asc")
*/
protected $tags = array();
/**
* #MongoDB\EmbedOne(targetDocument="Event_status")
*/
protected $event_status = array();
/**
* Get id
*
* #return id $id
*/
public function getId()
{
return $this->id;
}
/**
* Set eid
*
* #param string $eid
*/
public function setEid($eid)
{
$this->eid = $eid;
}
/**
* Get eid
*
* #return string $eid
*/
public function getEid()
{
return $this->eid;
}
/**
* Set start_time
*
* #param int $startTime
*/
public function setStartTime($startTime)
{
$this->start_time = $startTime;
}
/**
* Get start_time
*
* #return int $startTime
*/
public function getStartTime()
{
return $this->start_time;
}
/**
* Set end_time
*
* #param int $endTime
*/
public function setEndTime($endTime)
{
$this->end_time = $endTime;
}
/**
* Get end_time
*
* #return int $endTime
*/
public function getEndTime()
{
return $this->end_time;
}
/**
* Set title
*
* #param string $title
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* Get title
*
* #return string $title
*/
public function getTitle()
{
return $this->title;
}
/**
* Set description
*
* #param string $description
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* Get description
*
* #return string $description
*/
public function getDescription()
{
return $this->description;
}
/**
* Set host
*
* #param string $host
*/
public function setHost($host)
{
$this->host = $host;
}
/**
* Get host
*
* #return string $host
*/
public function getHost()
{
return $this->host;
}
/**
* Set location
*
* #param string $location
*/
public function setLocation($location)
{
$this->location = $location;
}
/**
* Get location
*
* #return string $location
*/
public function getLocation()
{
return $this->location;
}
/**
* Set pic_square
*
* #param string $picSquare
*/
public function setPicSquare($picSquare)
{
$this->pic_square = $picSquare;
}
/**
* Get pic_square
*
* #return string $picSquare
*/
public function getPicSquare()
{
return $this->pic_square;
}
/**
* Set coordinates
*
* #param CE\MainBundle\Document\coordinates $coordinates
*/
public function setCoordinates(\CE\MainBundle\Document\Coordinates $coordinates)
{
$this->coordinates = $coordinates;
}
/**
* Get coordinates
*
* #return CE\MainBundle\Document\coordinates $coordinates
*/
public function getCoordinates()
{
return $this->coordinates;
}
/**
* Set city_id
*
* #param int $cityId
*/
public function setCityId($cityId)
{
$this->city_id = $cityId;
}
/**
* Get city_id
*
* #return int $cityId
*/
public function getCityId()
{
return $this->city_id;
}
/**
* Set city_name
*
* #param string $cityName
*/
public function setCityName($cityName)
{
$this->city_name = $cityName;
}
/**
* Get city_name
*
* #return string $cityName
*/
public function getCityName()
{
return $this->city_name;
}
/**
* Set country
*
* #param string $country
*/
public function setCountry($country)
{
$this->country = $country;
}
/**
* Get country
*
* #return string $country
*/
public function getCountry()
{
return $this->country;
}
/**
* Set timezone
*
* #param string $timezone
*/
public function setTimezone($timezone)
{
$this->timezone = $timezone;
}
/**
* Get timezone
*
* #return string $timezone
*/
public function getTimezone()
{
return $this->timezone;
}
/**
* Set owner
*
* #param int $owner
*/
public function setOwner($owner)
{
$this->owner = $owner;
}
/**
* Get owner
*
* #return int $owner
*/
public function getOwner()
{
return $this->owner;
}
/**
* Set tags
*
* #param collection $tags
*/
public function setTags($tags)
{
$this->tags = $tags;
}
/**
* Get tags
*
* #return collection $tags
*/
public function getTags()
{
return $this->tags;
}
/**
* Set event_status
*
* #param CE\MainBundle\Document\event_status $eventStatus
*/
public function setEventStatus(\CE\MainBundle\Document\Event_status $eventStatus)
{
$this->event_status = $eventStatus;
}
/**
* Get event_status
*
* #return CE\MainBundle\Document\event_status $eventStatus
*/
public function getEventStatus()
{
return $this->event_status;
}
public function setEvent($event){
$this->eid = $event['eid'];
$this->start_time = $event['start_time'];
$this->end_time = $event['end_time'];
$this->description = $event['description'];
$this->host = $event['host'];
$this->location = $event['location'];
$this->pic_square = $event['pic_square'];
$this->city_id = (int)$event['city_id'];
$this->city_name = $event['city_name'];
$this->country = $event['country'];
$this->timezone = $event['timezone'];
$this->owner = $event['owner'];
$this->title = $event['title'];
$this->tags = $event['tags'];
$loc=new Coordinates();
$loc->setLongitude($event['coordinates']['longitude']);
$loc->setLatitude($event['coordinates']['latitude']);
$this->coordinates = $loc;
$stat = new Event_status();
$stat->setAttendCount($event['event_status']['attend_count']);
$stat->setAttendList($event['event_status']['attend_list']);
$stat->setClickCount($event['event_status']['click_count']);
$this->event_status = $stat;
}
}
/**
* #MongoDB\EmbeddedDocument
*/
Class Coordinates{
/**
* #MongoDB\Float
*/
protected $longitude;
/**
* #MongoDB\Float
*/
protected $latitude;
/**
* Set longitude
*
* #param float $longitude
*/
public function setLongitude($longitude)
{
$this->longitude = $longitude;
}
/**
* Get longitude
*
* #return float $longitude
*/
public function getLongitude()
{
return $this->longitude;
}
/**
* Set latitude
*
* #param float $latitude
*/
public function setLatitude($latitude)
{
$this->latitude = $latitude;
}
/**
* Get latitude
*
* #return float $latitude
*/
public function getLatitude()
{
return $this->latitude;
}
}
/**
* #MongoDB\EmbeddedDocument
*/
Class Event_status{
/**
* #MongoDB\Int
*/
protected $attend_count;
/**
* #MongoDB\Int
* #MongoDB\Index(order="desc")
*/
protected $click_count;
/**
* #MongoDB\Collection
*/
protected $attend_list = array();
/**
* Set attend_count
*
* #param int $attendCount
*/
public function setAttendCount($attendCount)
{
$this->attend_count = $attendCount;
}
/**
* Get attend_count
*
* #return int $attendCount
*/
public function getAttendCount()
{
return $this->attend_count;
}
/**
* Set click_count
*
* #param int $clickCount
*/
public function setClickCount($clickCount)
{
$this->click_count = $clickCount;
}
/**
* Get click_count
*
* #return int $clickCount
*/
public function getClickCount()
{
return $this->click_count;
}
public function incClickCount($i){
$this->click_count = $this->click_count + $i;
}
/**
* Set attend_list
*
* #param collection $attendList
*/
public function setAttendList($attendList)
{
$this->attend_list = $attendList;
}
/**
* Get attend_list
*
* #return collection $attendList
*/
public function getAttendList()
{
return $this->attend_list;
}
}
And I am trying to persist following object
object(CE\MainBundle\Document\Event)#302 (17) {
["id":protected]=>
NULL
["eid":protected]=>
string(15) "116189838391483"
["start_time":protected]=>
int(1356069600)
["end_time":protected]=>
int(1356080400)
["title":protected]=>
string(38) "Sex on December 20, 2012 Just In Case"
["description":protected]=>
string(322) "Spread the word
Maps : http://maps.google.nl/maps?f=q&source=s_q&hl=nl&q=Vondelpark,+1071+AA+Oud-Zuid,+Amsterd%C3%A3,+Amsterdam,+Noord-Holland&sll=52.469397,5.509644&sspn=5.134105,16.907959&ie=UTF8&geocode=FR_rHgMdG0pKAA&split=0&hq=&hnear=1071+AA+Amsterdam,+Noord-Holland&ll=52.360231,4.873273&spn=0.010051,0.033023&z=16
"
["host":protected]=>
string(19) "Sébastien Carvalho"
["location":protected]=>
string(21) "Amsterdam, VondelPark"
["pic_square":protected]=>
string(89) "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc4/71137_116189838391483_7509117_q.jpg"
["coordinates":protected]=>
object(CE\MainBundle\Document\Coordinates)#344 (2) {
["longitude":protected]=>
float(4.88969)
["latitude":protected]=>
float(52.37403)
}
["city_id":protected]=>
int(2759794)
["city_name":protected]=>
string(9) "Amsterdam"
["country":protected]=>
string(11) "Netherlands"
["timezone":protected]=>
string(16) "Europe/Amsterdam"
["owner":protected]=>
string(10) "1345873725"
["tags":protected]=>
array(39) {
[0]=>
string(3) "sex"
[1]=>
string(6) "decemb"
[2]=>
string(4) "just"
[3]=>
string(4) "case"
[4]=>
string(6) "spread"
[5]=>
string(4) "word"
[6]=>
string(3) "map"
[7]=>
string(1) ":"
[8]=>
string(5) "http:"
[9]=>
string(5) "googl"
[10]=>
string(2) "nl"
[11]=>
string(1) "f"
[12]=>
string(1) "q"
[13]=>
string(5) "sourc"
[14]=>
string(0) ""
[15]=>
string(2) "hl"
[16]=>
string(10) "vondelpark"
[17]=>
string(2) "aa"
[18]=>
string(3) "oud"
[19]=>
string(4) "zuid"
[20]=>
string(7) "amsterd"
[21]=>
string(2) "c3"
[22]=>
string(2) "a3"
[23]=>
string(9) "amsterdam"
[24]=>
string(5) "noord"
[25]=>
string(7) "holland"
[26]=>
string(3) "sll"
[27]=>
string(4) "sspn"
[28]=>
string(2) "ie"
[29]=>
string(4) "utf8"
[30]=>
string(6) "geocod"
[31]=>
string(2) "fr"
[32]=>
string(11) "rhgmdg0pkaa"
[33]=>
string(5) "split"
[34]=>
string(2) "hq"
[35]=>
string(5) "hnear"
[36]=>
string(2) "ll"
[37]=>
string(3) "spn"
[38]=>
string(1) "z"
}
["event_status":protected]=>
object(CE\MainBundle\Document\Event_status)#305 (3) {
["attend_count":protected]=>
int(0)
["click_count":protected]=>
int(0)
["attend_list":protected]=>
array(0) {
}
}
}
Please tell me where is the error?

Related

FOSUserBundle - Embed formtype

help me please ! I would like to embed form of the FOSUserBundle form in another form builder of an entity. When I do it there is no validation test in user entity. i m novice in symfony.
exemple :
->add('user', RegistrationType::class)
class FolderType extends AbstractType
{
/**
* {#inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('user', RegistrationType::class)
->add('firstname', TextType::class)
->add('lastname', TextType::class)
->add('dateBirth', BirthdayType::class)
->add('nationality', CountryType::class,
array(
'preferred_choices' => array(
'France', 'FR')
))
->add('phone', NumberType::class)
->add('save', SubmitType::class);
}
add function in controller :
public function addAction(Request $request, School $schoolId)
{
$em = $this->getDoctrine()->getManager();
$school = $em->getRepository('SchoolBundle:School')->findOneById($schoolId);
$candidat = new candidat();
//School Parameter
$candidat->setSchool($schoolId);
$form = $this->createForm('CandidacyBundle\Form\Onepage\FolderType', $candidat, array('schoolId' => $schoolId));
if($request->isMethod('POST') && $form->handleRequest($request)->isValid())
{
//exit(\Doctrine\Common\Util\Debug::dump($candidat));
$em->persist($candidat);
$em->flush();
$this->get('session')->getFlashBag()->add('notice','Yours new candidacy is added !');
return $this->redirectToRoute('candidacy_home');
}
return $this->render('CandidacyBundle:Folder_B:folder.html.twig', array(
'school' => $school,
'new_folder' => $form->createView()
));
}
REGISTRATION TYPE
namespace UserBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
class RegistrationType extends AbstractType{
public function buildForm(FormBuilderInterface $builder, array $options)
{
parent::buildForm($builder, $options);
$builder;
}
public function getParent()
{
return 'FOS\UserBundle\Form\Type\RegistrationFormType';
}
public function getBlockPrefix()
{
return 'app_user_registration';
}
}
CANDIDAT ENTITY
namespace CandidacyBundle\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Symfony\Component\Validator\Context\ExecutionContextInterface;
use Symfony\Component\Validator\Constraints as Assert;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\mapping\Annotation as Gedmo;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
/**
* Candidat
*
* #ORM\Table()
* #ORM\Entity
*/
class Candidat
{
//x - x - x - x - x - x - x - x - x - x - x - x - x - x - OBJ
/**
* #var integer
*
* #ORM\Column(name="id", type="integer")
* #ORM\Id
* #ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* #ORM\OneToOne(targetEntity="UserBundle\Entity\User", cascade={"persist"})
* #ORM\JoinColumn(nullable=false)
* #Assert\Valid
*/
private $user;
/**
* #ORM\ManyToOne(targetEntity="SchoolBundle\Entity\School")
* #ORM\JoinColumn(name="id_school", referencedColumnName="id", nullable=true)
*/
private $school;
/**
* #var boolean
*
* #ORM\Column(name="state", type="boolean")
*/
private $state = true;
/**
* #var boolean
*
* #ORM\Column(name="state_blacklist", type="boolean")
*/
private $stateBlacklist = false;
/**
* #var \DateTime
*
* #ORM\Column(name="date_entry", type="datetime")
*/
private $dateEntry;
/**
* #var string
* #Assert\NotBlank()
* #Assert\Length(min=3)
* #ORM\Column(name="name", type="string", length=255, nullable=true)
*/
private $firstname;
/**
* #var string
* #Assert\NotBlank(message="Vous devez indiquer votre nom")
* #Assert\Length(min=3)
* #Assert\Regex(
* pattern="/\d/",
* match=false,
* message="Uniquement des lettres"
* )
* #ORM\Column(name="lastname", type="string", length=255, nullable=true)
*/
private $lastname;
/**
* #var \date
* #ORM\Column(name="date_birth", type="date", nullable=true)
*/
private $dateBirth;
/**
* #var string
*
* #ORM\Column(name="nationality", type="string", length=255, nullable=true)
*/
private $nationality;
/**
* #var integer
*
* #ORM\Column(name="phone", type="integer", nullable=true)
*/
private $phone;
/**
* #var string
*
* #ORM\Column(name="adress_street", type="string", length=255, nullable=true)
*/
private $adress_street;
/**
* #var string
*
* #ORM\Column(name="adress_city", type="string", length=255, nullable=true)
*/
private $adress_city;
/**
* #var string
*
* #ORM\Column(name="adress_region", type="string", length=255, nullable=true)
*/
private $adress_region;
/**
* #var string
*
* #ORM\Column(name="adress_country", type="string", length=255, nullable=true)
*/
private $adress_country;
/**
* #var integer
*
* #ORM\Column(name="adress_zip", type="smallint", nullable=true)
*/
private $adress_zip;
/**
* #ORM\ManyToOne(targetEntity="SchoolBundle\Entity\Level", cascade={"persist"})
* #ORM\JoinColumn(name="study_current_level", referencedColumnName="id", nullable=true)
*/
private $studyCurrentLevel;
/**
* #var string
*
* #ORM\Column(name="study_current_graduate_name", type="string", length=50)
*/
private $studyCurrentGraduateName;
/**
* #ORM\ManyToOne(targetEntity="SchoolBundle\Entity\Graduate", cascade={"persist"})
* #ORM\JoinColumn(name="study_current_graduate", referencedColumnName="id", nullable=true )
*/
private $studyCurrentGraduate;
/**
* #ORM\ManyToOne(targetEntity="SchoolBundle\Entity\Graduate")
* #ORM\JoinColumn(name="study_widh_graduate", referencedColumnName="id", nullable=true )
*/
private $studyWishGraduate;
/**
* #ORM\ManyToOne(targetEntity="SchoolBundle\Entity\Sector")
* #ORM\JoinColumn(nullable=true)
*/
private $studyWishSector;
/**
* #ORM\ManyToMany(targetEntity="SchoolBundle\Entity\Speciality")
* #ORM\JoinTable(name="candidat_Speciality")
*/
private $studyWishSpecialities;
/**
* #ORM\ManyToOne(targetEntity="SchoolBundle\Entity\Section")
* #ORM\JoinColumn(nullable=true)
*/
private $studyWishSection;
/**
* #ORM\ManyToMany(targetEntity="SchoolBundle\Entity\Diploma", cascade={"persist"})
* #ORM\JoinTable(name="candidat_diploma")
*/
private $studyWishDiplomas;
/**
* #ORM\ManyToOne(targetEntity="SchoolBundle\Entity\Rhythm", cascade={"persist"})
* #ORM\JoinColumn(name="study_wish_rhythm", referencedColumnName="id", nullable=true)
*/
private $studyWishRhythm;
/**
* #var boolean
*
* #ORM\Column(name="study_wish_place_study", type="boolean", nullable=true)
*/
private $studyWishPlaceStudy;
/**
* #ORM\OneToOne(targetEntity="CandidacyBundle\Entity\Attachment", cascade={"all"})
* #ORM\JoinColumn(name="file_picture", nullable=true)
*/
private $picture;
/**
* #ORM\OneToOne(targetEntity="CandidacyBundle\Entity\Attachment", cascade={"all"})
* #ORM\JoinColumn(name="file_cv", nullable=true)
*/
private $cv;
/**
* #ORM\ManyToMany(targetEntity="CandidacyBundle\Entity\Attachment",cascade={"persist"})
* #ORM\JoinTable(name="candidat_attachment")
*/
private $attachments;
//x - x - x - x - x - x - x - x - x - x - x - x - x - x - CONSTRUCT
public function __construct()
{
$this->dateEntry = new \DateTime();
$this->attachments = new ArrayCollection();
}
//x - x - x - x - x - x - x - x - x - x - x - x - x - x - GET/SET
/**
* Get id
*
* #return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set state
*
* #param boolean $state
*
* #return Candidat
*/
public function setState($state)
{
$this->state = $state;
return $this;
}
/**
* Get state
*
* #return boolean
*/
public function getState()
{
return $this->state;
}
/**
* Set stateBlacklist
*
* #param boolean $stateBlacklist
*
* #return Candidat
*/
public function setStateBlacklist($stateBlacklist)
{
$this->stateBlacklist = $stateBlacklist;
return $this;
}
/**
* Get stateBlacklist
*
* #return boolean
*/
public function getStateBlacklist()
{
return $this->stateBlacklist;
}
/**
* Set dateEntry
*
* #param \DateTime $dateEntry
*
* #return Candidat
*/
public function setDateEntry($dateEntry)
{
$this->dateEntry = $dateEntry;
return $this;
}
/**
* Get dateEntry
*
* #return \DateTime
*/
public function getDateEntry()
{
return $this->dateEntry;
}
/**
* Set firstname
*
* #param string $firstname
*
* #return Candidat
*/
public function setFirstname($firstname)
{
$this->firstname = $firstname;
return $this;
}
/**
* Get firstname
*
* #return string
*/
public function getFirstname()
{
return $this->firstname;
}
/**
* Set lastname
*
* #param string $lastname
*
* #return Candidat
*/
public function setLastname($lastname)
{
$this->lastname = $lastname;
return $this;
}
/**
* Get lastname
*
* #return string
*/
public function getLastname()
{
return $this->lastname;
}
/**
* Set dateBirth
*
* #param \DateTime $dateBirth
*
* #return Candidat
*/
public function setDateBirth($dateBirth)
{
$this->dateBirth = $dateBirth;
return $this;
}
/**
* Get dateBirth
*
* #return \DateTime
*/
public function getDateBirth()
{
return $this->dateBirth;
}
/**
* Set email
*
* #param string $email
*
* #return Candidat
*/
public function setEmail($email)
{
$this->email = $email;
return $this;
}
/**
* Get email
*
* #return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Set nationality
*
* #param string $nationality
*
* #return Candidat
*/
public function setNationality($nationality)
{
$this->nationality = $nationality;
return $this;
}
/**
* Get nationality
*
* #return string
*/
public function getNationality()
{
return $this->nationality;
}
/**
* Set phone
*
* #param integer $phone
*
* #return Candidat
*/
public function setPhone($phone)
{
$this->phone = $phone;
return $this;
}
/**
* Get phone
*
* #return integer
*/
public function getPhone()
{
return $this->phone;
}
/**
* Set adressStreet
*
* #param string $adressStreet
*
* #return Candidat
*/
public function setAdressStreet($adressStreet)
{
$this->adress_street = $adressStreet;
return $this;
}
/**
* Get adressStreet
*
* #return string
*/
public function getAdressStreet()
{
return $this->adress_street;
}
/**
* Set adressCity
*
* #param string $adressCity
*
* #return Candidat
*/
public function setAdressCity($adressCity)
{
$this->adress_city = $adressCity;
return $this;
}
/**
* Get adressCity
*
* #return string
*/
public function getAdressCity()
{
return $this->adress_city;
}
/**
* Set adressRegion
*
* #param string $adressRegion
*
* #return Candidat
*/
public function setAdressRegion($adressRegion)
{
$this->adress_region = $adressRegion;
return $this;
}
/**
* Get adressRegion
*
* #return string
*/
public function getAdressRegion()
{
return $this->adress_region;
}
/**
* Set adressCountry
*
* #param string $adressCountry
*
* #return Candidat
*/
public function setAdressCountry($adressCountry)
{
$this->adress_country = $adressCountry;
return $this;
}
/**
* Get adressCountry
*
* #return string
*/
public function getAdressCountry()
{
return $this->adress_country;
}
/**
* Set adressZip
*
* #param integer $adressZip
*
* #return Candidat
*/
public function setAdressZip($adressZip)
{
$this->adress_zip = $adressZip;
return $this;
}
/**
* Get adressZip
*
* #return integer
*/
public function getAdressZip()
{
return $this->adress_zip;
}
/**
* Set studyCurrentLevel
*
* #param string $studyCurrentLevel
*
* #return Candidat
*/
public function setStudyCurrentLevel($studyCurrentLevel)
{
$this->studyCurrentLevel = $studyCurrentLevel;
return $this;
}
/**
* Get studyCurrentLevel
*
* #return string
*/
public function getStudyCurrentLevel()
{
return $this->studyCurrentLevel;
}
/**
* Set studyCurrentGraduateName
*
* #param string $studyCurrentGraduateName
*
* #return Candidat
*/
public function setStudyCurrentGraduateName($studyCurrentGraduateName)
{
$this->studyCurrentGraduateName = $studyCurrentGraduateName;
return $this;
}
/**
* Get studyCurrentGraduateName
*
* #return string
*/
public function getStudyCurrentGraduateName()
{
return $this->studyCurrentGraduateName;
}
/**
* Set studyCurrentGraduate
*
* #param string $studyCurrentGraduate
*
* #return Candidat
*/
public function setStudyCurrentGraduate($studyCurrentGraduate)
{
$this->studyCurrentGraduate = $studyCurrentGraduate;
return $this;
}
/**
* Get studyCurrentGraduate
*
* #return string
*/
public function getStudyCurrentGraduate()
{
return $this->studyCurrentGraduate;
}
/**
* Set studyWishGraduate
*
* #param string $studyWishGraduate
*
* #return Candidat
*/
public function setStudyWishGraduate($studyWishGraduate)
{
$this->studyWishGraduate = $studyWishGraduate;
return $this;
}
/**
* Get studyWishGraduate
*
* #return string
*/
public function getStudyWishGraduate()
{
return $this->studyWishGraduate;
}
/**
* Set studyWishSector
*
* #param string $studyWishSector
*
* #return Candidat
*/
public function setStudyWishSector($studyWishSector)
{
$this->studyWishSector = $studyWishSector;
return $this;
}
/**
* Get studyWishSector
*
* #return string
*/
public function getStudyWishSector()
{
return $this->studyWishSector;
}
/**
* Set studyWishRhythm
*
* #param string $studyWishRhythm
*
* #return Candidat
*/
public function setStudyWishRhythm($studyWishRhythm)
{
$this->studyWishRhythm = $studyWishRhythm;
return $this;
}
/**
* Get studyWishRhythm
*
* #return string
*/
public function getStudyWishRhythm()
{
return $this->studyWishRhythm;
}
/**
* Set studyWishPlaceStudy
*
* #param string $studyWishPlaceStudy
*
* #return Candidat
*/
public function setStudyWishPlaceStudy($studyWishPlaceStudy)
{
$this->studyWishPlaceStudy = $studyWishPlaceStudy;
return $this;
}
/**
* Get studyWishPlaceStudy
*
* #return string
*/
public function getStudyWishPlaceStudy()
{
return $this->studyWishPlaceStudy;
}
/**
* Set user
*
* #param guid $user
*
* #return \UserBundle\Entity\User $user
*/
public function setUser($user)
{
$this->user = $user;
return $this;
}
/**
* Get user
*
* #return \UserBundle\Entity\User
*/
public function getUser()
{
return $this->user;
}
/**
* Set studyWishSpecialities
*
* #param \SchoolBundle\Entity\Speciality $studyWishSpecialities
*
* #return Candidat
*/
public function setStudyWishSpecialities($studyWishSpecialities)
{
$this->studyWishSpecialities = $studyWishSpecialities;
return $this;
}
/**
* Get studyWishSpecialities
*
* #return \SchoolBundle\Entity\Speciality
*/
public function getStudyWishSpecialities()
{
return $this->studyWishSpecialities;
}
public function setPicture(Attachment $picture = null)
{
$this->picture = $picture;
}
public function getPicture()
{
return $this->picture;
}
public function setCv(Attachment $cv = null)
{
$this->cv = $cv;
}
public function getCv()
{
return $this->cv;
}
/**
* Add attachment
*
* #param \CandidacyBundle\Entity\Attachment $attachment
*
* #return Candidat
*/
public function addAttachment(\CandidacyBundle\Entity\Attachment $attachment)
{
$this->attachments[] = $attachment;
return $this;
}
/**
* Remove attachment
*
* #param \CandidacyBundle\Entity\Attachment $attachment
*/
public function removeAttachment(\CandidacyBundle\Entity\Attachment $attachment)
{
$this->attachments->removeElement($attachment);
}
/**
* Get attachments
*
* #return \Doctrine\Common\Collections\Collection
*/
public function getAttachments()
{
return $this->attachments;
}
/**
* Set school
*
* #param \SchoolBundle\Entity\School $school
*
* #return Candidat
*/
public function setSchool(\SchoolBundle\Entity\School $school = null)
{
$this->school = $school;
return $this;
}
/**
* Get school
*
* #return \SchoolBundle\Entity\School
*/
public function getSchool()
{
return $this->school;
}
/**
* Add studyWishSpeciality
*
* #param \SchoolBundle\Entity\Speciality $studyWishSpeciality
*
* #return Candidat
*/
public function addStudyWishSpeciality(\SchoolBundle\Entity\Speciality $studyWishSpeciality)
{
$this->studyWishSpecialities[] = $studyWishSpeciality;
return $this;
}
/**
* Remove studyWishSpeciality
*
* #param \SchoolBundle\Entity\Speciality $studyWishSpeciality
*/
public function removeStudyWishSpeciality(\SchoolBundle\Entity\Speciality $studyWishSpeciality)
{
$this->studyWishSpecialities->removeElement($studyWishSpeciality);
}
/**
* Set studyWishSection
*
* #param \SchoolBundle\Entity\Section $studyWishSection
*
* #return Candidat
*/
public function setStudyWishSection(\SchoolBundle\Entity\Section $studyWishSection = null)
{
$this->studyWishSection = $studyWishSection;
return $this;
}
/**
* Get studyWishSection
*
* #return \SchoolBundle\Entity\Section
*/
public function getStudyWishSection()
{
return $this->studyWishSection;
}
/**
* Add studyWishDiploma
*
* #param \SchoolBundle\Entity\Diploma $studyWishDiploma
*
* #return Candidat
*/
public function addStudyWishDiploma(\SchoolBundle\Entity\Diploma $studyWishDiploma)
{
$this->studyWishDiploma[] = $studyWishDiploma;
return $this;
}
/**
* Remove studyWishDiploma
*
* #param \SchoolBundle\Entity\Diploma $studyWishDiploma
*/
public function removeStudyWishDiploma(\SchoolBundle\Entity\Diploma $studyWishDiploma)
{
$this->studyWishDiploma->removeElement($studyWishDiploma);
}
/**
* Get studyWishDiploma
*
* #return \Doctrine\Common\Collections\Collection
*/
public function getStudyWishDiploma()
{
return $this->studyWishDiploma;
}
/**
* Get studyWishDiplomas
*
* #return \Doctrine\Common\Collections\Collection
*/
public function getStudyWishDiplomas()
{
return $this->studyWishDiplomas;
}
}

Updating an Entity with a file field

I'm trying to update my Recipe Entity that has a file field, in particular an image.
THIS IS MY ENTITY
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use Doctrine\Common\Collections\ArrayCollection;
/**
* Article
*
* #ORM\Table()
* #ORM\HasLifecycleCallbacks
* #ORM\Entity
*/
class Article
{
/**
* #var integer
*
* #ORM\Column(name="id", type="integer")
* #ORM\Id
* #ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* #var string
*
* #ORM\Column(name="titolo", type="string", length=255)
*/
private $titolo;
/**
* #var string
*
* #ORM\Column(name="autore", type="string", length=255)
*/
private $autore;
/**
* #var string
*
* #ORM\Column(name="testo", type="text")
*/
private $testo;
/**
* #var string
*
* #ORM\Column(name="categoria", type="string", length=100)
*/
private $categoria;
/**
* #var string $image
* #Assert\File( maxSize = "1024k", mimeTypesMessage = "Perfavore inserisci un'immagine valida!")
* #ORM\Column(name="image", type="string", length=255, nullable=true)
*/
private $image;
/**
* #var date
*
* #ORM\Column(name="data", type="date")
*/
public $data;
/**
* #var integer
*
* #ORM\Column(name="rate", type="integer",nullable=true)
*/
private $rate;
/**
* #ORM\OneToMany(targetEntity="CommentoArticle", mappedBy="article")
*/
protected $commentoarticle;
public function __construct()
{
$this->commentoarticle = new ArrayCollection();
}
/**
* Get id
*
* #return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set titolo
*
* #param string $titolo
*
* #return Article
*/
public function setTitolo($titolo)
{
$this->titolo = $titolo;
return $this;
}
/**
* Get titolo
*
* #return string
*/
public function getTitolo()
{
return $this->titolo;
}
/**
* Set autore
*
* #param string $autore
*
* #return Article
*/
public function setAutore($autore)
{
$this->autore = $autore;
return $this;
}
/**
* Get autore
*
* #return string
*/
public function getAutore()
{
return $this->autore;
}
/**
* Set testo
*
* #param string $testo
*
* #return Article
*/
public function setTesto($testo)
{
$this->testo = $testo;
return $this;
}
/**
* Get testo
*
* #return string
*/
public function getTesto()
{
return $this->testo;
}
/**
* Set image
*
* #param string $image
*/
public function setImage($image)
{
$this->image = $image;
}
/**
* Get image
*
* #return string
*/
public function getImage()
{
return $this->image;
}
public function getFullImagePath() {
return null === $this->image ? null : $this->getUploadRootDir(). $this->image;
}
protected function getUploadRootDir() {
// the absolute directory path where uploaded documents should be saved
return $this->getTmpUploadRootDir().$this->getId()."/";
}
protected function getTmpUploadRootDir() {
// the absolute directory path where uploaded documents should be saved
return __DIR__ . '/../../../web/imgArticoli/';
}
/**
* #ORM\PrePersist()
* #ORM\PreUpdate()
*/
public function uploadImage() {
// the file property can be empty if the field is not required
if (null === $this->image) {
return;
}
if(!$this->id){
$this->image->move($this->getTmpUploadRootDir(), $this->image->getClientOriginalName());
}else{
$this->image->move($this->getUploadRootDir(), $this->image->getClientOriginalName());
}
$this->setImage($this->image->getClientOriginalName());
}
/**
* #ORM\PostPersist()
*/
public function moveImage()
{
if (null === $this->image) {
return;
}
if(!is_dir($this->getUploadRootDir())){
mkdir($this->getUploadRootDir());
}
copy($this->getTmpUploadRootDir().$this->image, $this->getFullImagePath());
unlink($this->getTmpUploadRootDir().$this->image);
}
/**
* Set data
*
* #param \DateTime $data
*
* #return Article
*/
public function setData($data)
{
$this->data = $data;
return $this;
}
/**
* Get data
*
* #return \DateTime
*/
public function getData()
{
return $this->data;
}
/**
* Set categoria
*
* #param string $categoria
*
* #return Article
*/
public function setCategoria($categoria)
{
$this->categoria = $categoria;
return $this;
}
/**
* Get categoria
*
* #return string
*/
public function getCategoria()
{
return $this->categoria;
}
/**
* Add commentoarticle
*
* #param \AppBundle\Entity\CommentoArticle $commentoarticle
*
* #return Article
*/
public function addCommentoArticle(\AppBundle\Entity\CommentoArticle $commentoarticle)
{
$this->commentoarticle[] = $commentoarticle;
return $this;
}
/**
* Remove commentoarticle
*
* #param \AppBundle\Entity\CommentoArticle $commentoarticle
*/
public function removeCommentoArticle(\AppBundle\Entity\CommentoArticle $commentoarticle)
{
$this->commentoarticle->removeElement($commentoarticle);
}
/**
* Get commentoarticle
*
* #return \Doctrine\Common\Collections\Collection
*/
public function getCommentoArticle()
{
return $this->commentoarticle;
}
/**
* Set rate
*
* #param integer $rate
*
* #return Article
*/
public function setRate($rate)
{
$this->rate = $rate;
return $this;
}
/**
* Get rate
*
* #return integer
*/
public function getRate()
{
return $this->rate;
}
}
In the controller i have the update action
THIS IS THE CONTROLLER ACTION
public function update_ricettaAction(Request $request, $id)
{
//$this->denyAccessUnlessGranted('ROLE_ADMIN', null, 'Non puoi accedere a questa pagina!');
$em = $this->getDoctrine()->getManager();
$recipe = $em->getRepository('AppBundle:Recipe')->find($id);
$form = $this->createForm(new RecipeType($recipe), $recipe);
$form->handleRequest($request);
if ($form->isValid())
{
$em = $this->getDoctrine()->getManager();
try
{
$em->persist($recipe);
$em->flush();
return $this->redirect($this->generateUrl('successricettaupdate'));
} catch (\Exception $e)
{
$form->addError(new FormError('errore nel database: ' . $e->getMessage()));
}
if ($form->isValid())
{
$var = $recipe;
$em->persist($var);
$em->flush();
return $this->redirect($this->generateUrl('successricettaupdate'));
} else
{
}
}
return $this->render('administration/update_ricetta.html.twig', array(
'recipe' => $recipe,
'form' => $form->createView()));
}
When i submit the form, to update all, some, or just one field of the entity, i get the error:
Error: Call to a member function move() on a non-object
I don't know what can it be...
Any suggestion?
SOLVED
I solved my own problem, and this is the solution if can help anyone:
In the Entity, i modified this:
/**
* #ORM\PrePersist()
* #ORM\PreUpdate()
*/
public function uploadImage() {
// the file property can be empty if the field is not required
if (null === $this->image) {
return;
}
if(!$this->id){
$this->image->move($this->getTmpUploadRootDir(), $this->image->getClientOriginalName());
}else{
$this->image->move($this->getUploadRootDir(), $this->image->getClientOriginalName());
}
$this->setImage($this->image->getClientOriginalName());
}
in to this:
/**
* #ORM\PrePersist()
* #ORM\PreUpdate()
*/
public function uploadImage() {
// the file property can be empty if the field is not required
if (null === $this->image) {
return;
}
if(!$this->id){
$this->image->move($this->getTmpUploadRootDir(), $this->image->getClientOriginalName());
}else{
return null;
}
}
Now I don't get any error, and the updating works!

Lifecycle Callbacks not triggering in my embedded form

It would appear my lifecycle callbacks are not triggered when the form to upload my file is embedded in another form. If the upload form is on its own the lifecycle callbacks are triggered.
I have a form that creates a 'user' entity, for this user I have a one-on-one relationship with the 'ProfilePicture' entity which has the lifecycle callbacks, I want to upload the profilepicture file on the same form. I followed the "How to handle File Uploads" cookbook, but it doesn't explain how to handle embedded forms.
UserType
<?php
namespace CashBack\AdminBundle\Form\Type;
use CashBack\DefaultBundle\Entity\ProfilePicture;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class UserType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
/* additional fields that should not be saved in this object need ->add('agreeWithTerms', null,array('mapped' => false))*/
$builder
->add('id','hidden',array('mapped' => false))
->add('username')
->add('password')
->add('firstname')
->add('lastname')
->add('email')
->add('gender')
->add('dateOfBirth','birthday')
->add('customrole')
->add('profilepicture', new ProfilePictureType())
->add('save', 'submit');
}
/* Identifier */
public function getName()
{
return 'User';
}
/* Makes sure the form doesn't need to guess the date type */
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'CashBack\DefaultBundle\Entity\User',
'cascade_validation' => true,
));
}
}
ProfilePictureType
<?php
namespace CashBack\AdminBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class ProfilePictureType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
/* additional fields that should not be saved in this object need ->add('agreeWithTerms', null,array('mapped' => false))*/
$builder
->add('id','hidden',array('mapped' => false))
->add('file','file');
}
/* Identifier */
public function getName()
{
return 'ProfilePicture';
}
/* Makes sure the form doesn't need to guess the date type */
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'CashBack\DefaultBundle\Entity\ProfilePicture',
));
}
}
ProfilePicture Entity
<?php
namespace CashBack\DefaultBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Component\HttpFoundation\File\UploadedFile;
/**
* #ORM\Entity
* #ORM\HasLifecycleCallbacks
*/
class ProfilePicture
{
/**
* #var integer
*
* #ORM\Column(name="Id", type="integer")
* #ORM\Id
* #ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* #ORM\Column(type="string", length=255, nullable=true)
*/
private $path;
public function getAbsolutePath()
{
return null === $this->path
? null
: $this->getUploadRootDir() . '/' . $this->path;
}
public function getWebPath()
{
return null === $this->path
? null
: $this->getUploadDir() . '/' . $this->path;
}
protected function getUploadRootDir()
{
// the absolute directory path where uploaded
// documents should be saved
return __DIR__ . '/../../../../web/' . $this->getUploadDir();
}
protected function getUploadDir()
{
// get rid of the __DIR__ so it doesn't screw up
// when displaying uploaded doc/image in the view.
return 'uploads/documents';
}
/**
* #Assert\File(maxSize="6000000")
*/
private $file;
private $temp;
/**
* Sets file.
*
* #param UploadedFile $file
*/
public function setFile(UploadedFile $file = null)
{
$this->file = $file;
// check if we have an old image path
if (isset($this->path)) {
// store the old name to delete after the update
$this->temp = $this->path;
$this->path = null;
} else {
$this->path = 'initial';
}
}
/**
* #ORM\PrePersist()
* #ORM\PreUpdate()
*/
public function preUpload()
{
if (null !== $this->getFile()) {
// do whatever you want to generate a unique name
$filename = sha1(uniqid(mt_rand(), true));
$this->path = $filename . '.' . $this->getFile()->guessExtension();
}
}
/**
* #ORM\PostPersist()
* #ORM\PostUpdate()
*/
public function upload()
{
if (null === $this->getFile()) {
return;
}
// if there is an error when moving the file, an exception will
// be automatically thrown by move(). This will properly prevent
// the entity from being persisted to the database on error
$this->getFile()->move($this->getUploadRootDir(), $this->path);
// check if we have an old image
if (isset($this->temp)) {
// delete the old image
unlink($this->getUploadRootDir() . '/' . $this->temp);
// clear the temp image path
$this->temp = null;
}
$this->file = null;
}
/**
* #ORM\PostRemove()
*/
public function removeUpload()
{
if ($file = $this->getAbsolutePath()) {
unlink($file);
}
}
/**
* Get file.
*
* #return UploadedFile
*/
public function getFile()
{
return $this->file;
}
/**
* Get id
*
* #return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set path
*
* #param string $path
*
* #return ProfilePicture
*/
public function setPath($path)
{
$this->path = $path;
return $this;
}
/**
* Get path
*
* #return string
*/
public function getPath()
{
return $this->path;
}
/**
* #ORM\OneToOne(targetEntity="User", inversedBy="profilepicture")
* #ORM\JoinColumn(name="user_id", referencedColumnName="Id")
*/
protected $user;
/**
* Set user
*
* #param \CashBack\DefaultBundle\Entity\User $user
*
* #return ProfilePicture
*/
public function setUser(\CashBack\DefaultBundle\Entity\User $user = null)
{
$this->user = $user;
return $this;
}
/**
* Get user
*
* #return \CashBack\DefaultBundle\Entity\User
*/
public function getUser()
{
return $this->user;
}
}
User Entity
<?php
namespace CashBack\DefaultBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* User
*
* #ORM\Table(name="user")
* #ORM\Entity
*/
class User
{
/**
* #var string
*
* #ORM\Column(name="FirstName", type="string", length=10, nullable=true)
*/
private $firstname;
/**
* #var string
*
* #ORM\Column(name="LastName", type="string", length=20, nullable=true)
*/
private $lastname;
/**
* #var string
*
* #ORM\Column(name="Gender", type="string", length=1, nullable=true)
*/
private $gender;
/**
* #var string
*
* #ORM\Column(name="Email", type="string", length=50, nullable=false)
*/
private $email;
/**
* #var \DateTime
*
* #ORM\Column(name="DateOfBirth", type="date", nullable=false)
*/
private $dateofbirth;
/**
* #var string
*
* #ORM\Column(name="Username", type="string", length=50, nullable=false)
*/
private $username;
/**
* #var string
*
* #ORM\Column(name="Password", type="string", length=100, nullable=false)
*/
private $password;
/**
* #var integer
*
* #ORM\Column(name="Id", type="integer")
* #ORM\Id
* #ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* #var \Doctrine\Common\Collections\Collection
*
* #ORM\ManyToMany(targetEntity="CashBack\DefaultBundle\Entity\Tag", inversedBy="user")
* #ORM\JoinTable(name="user_tag",
* joinColumns={
* #ORM\JoinColumn(name="user_id", referencedColumnName="Id")
* },
* inverseJoinColumns={
* #ORM\JoinColumn(name="tag_id", referencedColumnName="Id")
* }
* )
*/
private $tag;
/**
* #var \Doctrine\Common\Collections\Collection
*
* #ORM\ManyToMany(targetEntity="CashBack\DefaultBundle\Entity\Customrole", inversedBy="user")
* #ORM\JoinTable(name="user_customrole",
* joinColumns={
* #ORM\JoinColumn(name="user_id", referencedColumnName="Id")
* },
* inverseJoinColumns={
* #ORM\JoinColumn(name="customrole_id", referencedColumnName="Id")
* }
* )
*/
private $customrole;
/**
* #var \Doctrine\Common\Collections\Collection
*
* #ORM\ManyToMany(targetEntity="CashBack\DefaultBundle\Entity\Shop", inversedBy="user")
* #ORM\JoinTable(name="user_shop",
* joinColumns={
* #ORM\JoinColumn(name="user_id", referencedColumnName="Id")
* },
* inverseJoinColumns={
* #ORM\JoinColumn(name="shop_id", referencedColumnName="Id")
* }
* )
*/
private $shop;
/**
* Constructor
*/
public function __construct()
{
$this->tag = new \Doctrine\Common\Collections\ArrayCollection();
$this->customrole = new \Doctrine\Common\Collections\ArrayCollection();
$this->shop = new \Doctrine\Common\Collections\ArrayCollection();
}
/**
* Set firstname
*
* #param string $firstname
*
* #return User
*/
public function setFirstname($firstname)
{
$this->firstname = $firstname;
return $this;
}
/**
* Get firstname
*
* #return string
*/
public function getFirstname()
{
return $this->firstname;
}
/**
* Set lastname
*
* #param string $lastname
*
* #return User
*/
public function setLastname($lastname)
{
$this->lastname = $lastname;
return $this;
}
/**
* Get lastname
*
* #return string
*/
public function getLastname()
{
return $this->lastname;
}
/**
* Set gender
*
* #param string $gender
*
* #return User
*/
public function setGender($gender)
{
$this->gender = $gender;
return $this;
}
/**
* Get gender
*
* #return string
*/
public function getGender()
{
return $this->gender;
}
/**
* Set email
*
* #param string $email
*
* #return User
*/
public function setEmail($email)
{
$this->email = $email;
return $this;
}
/**
* Get email
*
* #return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Set dateofbirth
*
* #param \DateTime $dateofbirth
*
* #return User
*/
public function setDateofbirth($dateofbirth)
{
$this->dateofbirth = $dateofbirth;
return $this;
}
/**
* Get dateofbirth
*
* #return \DateTime
*/
public function getDateofbirth()
{
return $this->dateofbirth;
}
/**
* Set username
*
* #param string $username
*
* #return User
*/
public function setUsername($username)
{
$this->username = $username;
return $this;
}
/**
* Get username
*
* #return string
*/
public function getUsername()
{
return $this->username;
}
/**
* Set password
*
* #param string $password
*
* #return User
*/
public function setPassword($password)
{
$this->password = $password;
return $this;
}
/**
* Get password
*
* #return string
*/
public function getPassword()
{
return $this->password;
}
/**
* Get id
*
* #return integer
*/
public function getId()
{
return $this->id;
}
/**
* Add tag
*
* #param \CashBack\DefaultBundle\Entity\Tag $tag
*
* #return User
*/
public function addTag(\CashBack\DefaultBundle\Entity\Tag $tag)
{
$this->tag[] = $tag;
return $this;
}
/**
* Remove tag
*
* #param \CashBack\DefaultBundle\Entity\Tag $tag
*/
public function removeTag(\CashBack\DefaultBundle\Entity\Tag $tag)
{
$this->tag->removeElement($tag);
}
/**
* Get tag
*
* #return \Doctrine\Common\Collections\Collection
*/
public function getTag()
{
return $this->tag;
}
/**
* Add customrole
*
* #param \CashBack\DefaultBundle\Entity\Customrole $customrole
*
* #return User
*/
public function addCustomrole(\CashBack\DefaultBundle\Entity\Customrole $customrole)
{
$this->customrole[] = $customrole;
return $this;
}
/**
* Remove customrole
*
* #param \CashBack\DefaultBundle\Entity\Customrole $customrole
*/
public function removeCustomrole(\CashBack\DefaultBundle\Entity\Customrole $customrole)
{
$this->customrole->removeElement($customrole);
}
/**
* Get customrole
*
* #return \Doctrine\Common\Collections\Collection
*/
public function getCustomrole()
{
return $this->customrole;
}
/**
* Add shop
*
* #param \CashBack\DefaultBundle\Entity\Shop $shop
*
* #return User
*/
public function addShop(\CashBack\DefaultBundle\Entity\Shop $shop)
{
$this->shop[] = $shop;
return $this;
}
/**
* Remove shop
*
* #param \CashBack\DefaultBundle\Entity\Shop $shop
*/
public function removeShop(\CashBack\DefaultBundle\Entity\Shop $shop)
{
$this->shop->removeElement($shop);
}
/**
* Get shop
*
* #return \Doctrine\Common\Collections\Collection
*/
public function getShop()
{
return $this->shop;
}
/** #ORM\OneToOne(targetEntity="ProfilePicture", mappedBy="user", cascade={"persist", "all"}) */
protected $profilepicture;
/**
* Set profilepicture
*
* #param \CashBack\DefaultBundle\Entity\ProfilePicture $profilepicture
*
* #return User
*/
public function setProfilepicture(\CashBack\DefaultBundle\Entity\ProfilePicture $profilepicture)
{
$this->profilepicture = $profilepicture;
$profilepicture->setUser($this);
return $this;
}
/**
* Get profilepicture
*
* #return \CashBack\DefaultBundle\Entity\ProfilePicture
*/
public function getProfilepicture()
{
return $this->profilepicture;
}
}
User controller
//adds a new entity from data received via Ajax, no redirect
public function addAjaxAction(Request $request)
{
$user = new User();
$form = $this->createForm(new UserType(), $user);
$form->handleRequest($request);
$user = $form->getData();
$em = $this->getDoctrine()->getManager();
$em->persist($user);
$em->flush();
//prepare the response, e.g.
$response = array("code" => 100, "success" => true);
//you can return result as JSON , remember to 'use' Response!
return new Response(json_encode($response));
}
EDIT: when checking the profiler I saw that the following object is submitted in the form:
If i check the profiler I see the following object being submitted in the form: {"username":"test","password":"test","firstname":"test","lastname":"test","email":"test","gender":"t","dateOfBirth":{"month":"1","day":"1","year":"1902"},"customrole":["2"],"id":"","profilepicture":{"id":""},"_token":"YUDiZLi8dY6jtmEhZWk6ivnH3vsQIpnM_fxQ3ClJ2Gw"}
Profile picture is thus empty.

Getter always return NULL

I'm on mongodb doctrine in symfony2 and this is Jackass oops , this is my document
<?php
// srcng/NearBundle/Document/Cities.php
namespace ng\NearBundle\Document;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
/**
* #MongoDB\Document(collection="cities") *
*/
class Cities
{
/**
* #MongoDB\Id
*/
protected $id;
/**
* #MongoDB\string
*/
protected $country;
/**
* #MongoDB\string
*/
protected $name;
/**
* #MongoDB\string
*/
protected $tokens;
/**
* #MongoDB\float
*/
protected $latitude;
/**
* #MongoDB\float
*/
protected $longitude;
/**
* Get id
*
* #return id $id
*/
public function getId()
{
return $this->id;
}
/**
* Set country
*
* #param string $country
* #return self
*/
public function setCountry($country)
{
$this->country = $country;
return $this;
}
/**
* Get country
*
* #return string $country
*/
public function getCountry()
{
return $this->country;
}
/**
* Set name
*
* #param string $name
* #return self
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* #return string $name
*/
public function getName()
{
return $this->name;
}
/**
* Set tokens
*
* #param string $tokens
* #return self
*/
public function setTokens($tokens)
{
$this->tokens = $tokens;
return $this;
}
/**
* Get tokens
*
* #return string $tokens
*/
public function getTokens()
{
return $this->tokens;
}
/**
* Set latitude
*
* #param float $latitude
* #return self
*/
public function setLatitude($latitude)
{
$this->latitude = $latitude;
return $this;
}
/**
* Get latitude
*
* #return float $latitude
*/
public function getLatitude()
{
return $this->latitude;
}
/**
* Set longitude
*
* #param float $longitude
* #return self
*/
public function setLongitude($longitude)
{
$this->longitude = $longitude;
return $this;
}
/**
* Get longitude
*
* #return float $longitude
*/
public function getLongitude()
{
return $this->longitude;
}
}
in my controller when I run a query I get this :
object(ng\NearBundle\Document\Cities)#226 (6) {
["id":protected]=>
string(24) "52e95b6f69eb53d8877f44b5"
["country":protected]=>
NULL
["name":protected]=>
string(4) "Yuma"
["tokens":protected]=>
string(132) "Juma,YUM,Yuma,you ma,yuma,ywma, aryzwna,ywmh,Јума,Юма,יומה,یوما، آریزونا,ዩማᥠአሪዞና,ユマ,尤馬"
["latitude":protected]=>
string(8) "32.72532"
["longitude":protected]=>
string(9) "-114.6244"
}
country is always null
a MongoDB document example :
{
"_id" : ObjectId("52e95b6469eb53d8877eec0c"),
"name" : "'Ali Sabieh",
"tokens" : "Ali Sabie,Ali Sabiet,Ali Sabih,Ali Sabiè,Ali-Sabie,`Ali Sabieh,`Ali Sabih,Али-Сабие,‘Ali Sabieh,‘Ali Sabîẖ",
"country" : "DJ",
"latitude" : 11.15583,
"longitude" : 42.7125
}
what you think is the problem here?
The problem was the Memcached, it cached the models and didn't recognized the new field country !

Symfony2 - Able to add data of multiple entities to database but no foreign keys are added

I got 2 tables connected with a foreign key (user_id is in the table persons). I'm able to add data to both of the tables by executing 1 form.
but on the execute i expected that the foreign key would automatically be generated in the table persons.
Here are my enities
USERS
namespace Geo\CityTroopersBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Geo\CityTroopersBundle\Entity\Users
*
* #ORM\Table(name="users")
* #ORM\Entity
*/
class Users
{
//Vanaf hier bijgevoegd
protected $adress;
protected $person;
//Einde zelf toegevoegde properties
/**
* #var integer $userId
*
* #ORM\Column(name="user_id", type="integer", nullable=false)
* #ORM\Id
* #ORM\GeneratedValue(strategy="IDENTITY")
*/
private $userId;
/**
* #var string $user
*
* #ORM\Column(name="user_password", type="string", length=128, nullable=true)
*/
private $userPassword;
/**
* #var string $userEmail
*
* #ORM\Column(name="user_email", type="string", length=128, nullable=true)
*/
private $userEmail;
/**
* #var string $userImage
*
* #ORM\Column(name="user_image", type="string", length=128, nullable=true)
*/
private $userImage;
/**
* #var string $userQuestion
*
* #ORM\Column(name="user_question", type="string", length=128, nullable=true)
*/
private $userQuestion;
/**
* #var string $userAnswer
*
* #ORM\Column(name="user_answer", type="string", length=128, nullable=true)
*/
private $userAnswer;
/**
* #var \DateTime $userCreateddate
*
* #ORM\Column(name="user_createddate", type="datetime", nullable=true)
*/
/**
* Get userId
*
* #return integer
*/
public function getUserId()
{
return $this->userId;
}
/**
* Set userPassword
*
* #param string $userPassword
* #return Users
*/
public function setUserPassword($userPassword)
{
$this->userPassword = $userPassword;
return $this;
}
/**
* Get userPassword
*
* #return string
*/
public function getUserPassword()
{
return $this->userPassword;
}
/**
* Set userEmail
*
* #param string $userEmail
* #return Users
*/
public function setUserEmail($userEmail)
{
$this->userEmail = $userEmail;
return $this;
}
/**
* Get userEmail
*
* #return string
*/
public function getUserEmail()
{
return $this->userEmail;
}
/**
* Set userImage
*
* #param string $userImage
* #return Users
*/
public function setUserImage($userImage)
{
$this->userImage = $userImage;
return $this;
}
/**
* Get userImage
*
* #return string
*/
public function getUserImage()
{
return $this->userImage;
}
/**
* Set userQuestion
*
* #param string $userQuestion
* #return Users
*/
public function setUserQuestion($userQuestion)
{
$this->userQuestion = $userQuestion;
return $this;
}
/**
* Get userQuestion
*
* #return string
*/
public function getUserQuestion()
{
return $this->userQuestion;
}
/**
* Set userAnswer
*
* #param string $userAnswer
* #return Users
*/
public function setUserAnswer($userAnswer)
{
$this->userAnswer = $userAnswer;
return $this;
}
/**
* Get userAnswer
*
* #return string
*/
public function getUserAnswer()
{
return $this->userAnswer;
}
//Zelf toegevoegde getters & setters
public function getPerson()
{
return $this->person;
}
public function setPerson(Persons $person = null)
{
$this->person = $person;
}
public function getAdress()
{
return $this->adress;
}
public function setAdress(Adresses $adress = null)
{
$this->adress = $adress;
}
}
PERSONS
namespace Geo\CityTroopersBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Geo\CityTroopersBundle\Entity\Persons
*
* #ORM\Table(name="persons")
* #ORM\Entity
*/
class Persons
{
/**
* #var integer $personId
*
* #ORM\Column(name="person_id", type="integer", nullable=false)
* #ORM\Id
* #ORM\GeneratedValue(strategy="IDENTITY")
*/
private $personId;
/**
* #var integer $adressId
*
* #ORM\Column(name="adress_id", type="integer", nullable=false)
*/
private $adressId;
/**
* #var string $personFamilyname
*
* #ORM\Column(name="person_familyname", type="string", length=64, nullable=false)
*/
private $personFamilyname;
/**
* #var string $personFirstname
*
* #ORM\Column(name="person_firstname", type="string", length=64, nullable=false)
*/
private $personFirstname;
/**
* #var boolean $personGender
*
* #ORM\Column(name="person_gender", type="boolean", nullable=false)
*/
private $personGender;
/**
* #var string $personNationality
*
* #ORM\Column(name="person_nationality", type="string", length=45, nullable=false)
*/
private $personNationality;
/**
* #var Users
*
* #ORM\ManyToOne(targetEntity="Users")
* #ORM\JoinColumns({
* #ORM\JoinColumn(name="user_id", referencedColumnName="user_id")
* })
*/
private $user;
/**
* Get personId
*
* #return integer
*/
public function getPersonId()
{
return $this->personId;
}
/**
* Set adressId
*
* #param integer $adressId
* #return Persons
*/
public function setAdressId($adressId)
{
$this->adressId = $adressId;
return $this;
}
/**
* Get adressId
*
* #return integer
*/
public function getAdressId()
{
return $this->adressId;
}
/**
* Set personFamilyname
*
* #param string $personFamilyname
* #return Persons
*/
public function setPersonFamilyname($personFamilyname)
{
$this->personFamilyname = $personFamilyname;
return $this;
}
/**
* Get personFamilyname
*
* #return string
*/
public function getPersonFamilyname()
{
return $this->personFamilyname;
}
/**
* Set personFirstname
*
* #param string $personFirstname
* #return Persons
*/
public function setPersonFirstname($personFirstname)
{
$this->personFirstname = $personFirstname;
return $this;
}
/**
* Get personFirstname
*
* #return string
*/
public function getPersonFirstname()
{
return $this->personFirstname;
}
/**
* Set personGender
*
* #param boolean $personGender
* #return Persons
*/
public function setPersonGender($personGender)
{
$this->personGender = $personGender;
return $this;
}
/**
* Get personGender
*
* #return boolean
*/
public function getPersonGender()
{
return $this->personGender;
}
/**
* Set personNationality
*
* #param string $personNationality
* #return Persons
*/
public function setPersonNationality($personNationality)
{
$this->personNationality = $personNationality;
return $this;
}
/**
* Get personNationality
*
* #return string
*/
public function getPersonNationality()
{
return $this->personNationality;
}
/**
* Set user
*
* #param Geo\CityTroopersBundle\Entity\Users $user
* #return Persons
*/
public function setUser(\Geo\CityTroopersBundle\Entity\Users $user = null)
{
$this->user = $user;
return $this;
}
/**
* Get user
*
* #return Geo\CityTroopersBundle\Entity\Users
*/
public function getUser()
{
return $this->user;
}
}
CONTROLLER
class UserController extends Controller
{
public function registerAction(Request $request)
{
$user = new Users();
$person = new Persons();
//$adress = new Adresses();
$form = $this->createForm(new UserType(), $user);
if ($request->getMethod() == 'POST'){
$form->bindRequest($request);
if($form->isValid()){
$person = $form->getData();
//$adress = $form->getData();
$em = $this->getDoctrine()->getEntityManager();
$em->persist($user);
$em->persist($user->getPerson());
//$em->persist($user->getAdress());
$em->flush();
return $this->redirect($this->generateUrl('indexpage'));
}
}
return $this->render('GeoCityTroopersBundle:User:register.html.twig', array(
'form' => $form->createView(),
));
}
}
USERTYPE
class UserType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('person', new PersonType());
$builder->add('userEmail');
$builder->add('userPassword', 'password');
$builder->add('userImage');
$builder->add('userQuestion');
$builder->add('userAnswer');
//$builder->add('adress', new AdressType());
}
public function getName()
{
return 'user';
}
}
PERSONTYPE
class PersonType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('personFamilyname');
$builder->add('personFirstname');
$builder->add('personNationality');
$builder->add('personGender');
//$builder->add('adressId');
}
public function getDefaultOptions(array $options)
{
return array(
'data_class' => 'Geo\CityTroopersBundle\Entity\Persons',
);
}
public function getName()
{
return 'person';
}
}
I have tried to add in the annotations of Users the following:
/**
* Bidirectional (INVERSE SIDE)
* #ORM\OneToOne(targetEntity="Persons",cascade={"persist"})
*
*/
But this didn't worked either.
I have a feeling there is something wrong with the setup of my database, the relation between persons and users is one to one.
update: Deleted unnecessary
Thanks in advance