Hi,
in a sheduled Job, I want unzip a document and these contains many csv file.
All here is OK.
But, how I can create Note (?) and relate this to contact ? So ?
$entityManager = $this->getEntityManager();
$note = $entityManager->getEntity('Note')
How put file ?
$entityManager->saveEntity($note);
$entityManager->getRepository('Contact')->relate($contact, 'notes', $notes);
Can be do able ? Where can find help ? Thanks Regards
in a sheduled Job, I want unzip a document and these contains many csv file.
All here is OK.
But, how I can create Note (?) and relate this to contact ? So ?
$entityManager = $this->getEntityManager();
$note = $entityManager->getEntity('Note')
How put file ?
$entityManager->saveEntity($note);
$entityManager->getRepository('Contact')->relate($contact, 'notes', $notes);
Can be do able ? Where can find help ? Thanks Regards
Comment