I use feeds to import data from csv file with eck entity processor and feeds module drupal 7, in fields of bundel i have entity reference field named nom candidat like in image bellow, but when i import data from csv file i need to create if note existe a new entity candidat in candidat entity type. In this case i have setup used feed entity reference and maping field "nom candidat" to according entity id, but when i upload to file it doesn't create candidat entity if not existe, how i can do that please
Today I updated Drupal core from 7.73 to 7.75 (security update from 26 November 2020). Something doesn't look right:
On Status report it shows: Drupal 7.75 but in Available Updates it still shows as 7.73 and update to 7.75 is required. I have a profile installation so I left the following folders unchanged: Modules, Profiles, Sites and Themes. The rest is replaced.
Hello iam using ajax in my drupal forms and i need to apply a test on my event witch is a user triggered or code triggered!
So, drupal forms provide an event key:
[#ajax] => array(
'event' => 'change',
... )
I need something like this to know about the event origin:
If(e.originalEvent) {
// user triggered
} else {
// code triggered
}
My purpose is to test my event and knowing that change event caused by code triggered (jquery replace html by ajax) or user triggered.