concernement added possibility to add existing entité
This commit is contained in:
parent
3467bc3f5f
commit
6a09481105
|
@ -39,12 +39,13 @@ content:
|
||||||
label_singular: ''
|
label_singular: ''
|
||||||
label_plural: ''
|
label_plural: ''
|
||||||
allow_new: true
|
allow_new: true
|
||||||
allow_existing: false
|
allow_existing: true
|
||||||
match_operator: CONTAINS
|
match_operator: CONTAINS
|
||||||
allow_duplicate: false
|
allow_duplicate: false
|
||||||
collapsible: false
|
collapsible: false
|
||||||
collapsed: false
|
collapsed: false
|
||||||
revision: false
|
revision: false
|
||||||
|
removed_reference: optional
|
||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
field_menace_maintien_degres:
|
field_menace_maintien_degres:
|
||||||
type: number
|
type: number
|
||||||
|
|
|
@ -149,6 +149,18 @@ function ouatminimal_preprocess_input(&$variables) {
|
||||||
if (preg_match('/^ief-field_entite-\d+-subform-field_entite-form-add$/', $name)) {
|
if (preg_match('/^ief-field_entite-\d+-subform-field_entite-form-add$/', $name)) {
|
||||||
$element['#value'] = $element['#attributes']['value'] = $variables['attributes']['value'] = "Editer l'entité";
|
$element['#value'] = $element['#attributes']['value'] = $variables['attributes']['value'] = "Editer l'entité";
|
||||||
}
|
}
|
||||||
|
// rename entité reference in paragraphe "Ajouter un node existant" to "ajouyer entite existante"
|
||||||
|
// "ief-field_entite-0-subform-field_entite-form-add"
|
||||||
|
if (preg_match('/^ief-field_entite-\d+-subform-field_entite-form-add-existing$/', $name)) {
|
||||||
|
$element['#value'] = $element['#attributes']['value'] = $variables['attributes']['value'] = "Ajouter une entité éxistante";
|
||||||
|
}
|
||||||
|
|
||||||
|
// rename entité reference in paragraphe "Ajout de node" to "Ajouter"
|
||||||
|
// "ief-reference-submit-field_entite-7-subform-field_entite-form"
|
||||||
|
if (preg_match('/^ief-reference-submit-field_entite-\d+-subform-field_entite-form$/', $name)) {
|
||||||
|
$element['#value'] = $element['#attributes']['value'] = $variables['attributes']['value'] = "Ajouter";
|
||||||
|
}
|
||||||
|
|
||||||
// rename remove (paragraphe) to "supprimer"
|
// rename remove (paragraphe) to "supprimer"
|
||||||
if (preg_match('/field_entite_\d+_remove/', $name)) {
|
if (preg_match('/field_entite_\d+_remove/', $name)) {
|
||||||
$element['#value'] = $element['#attributes']['value'] = $variables['attributes']['value'] = "Supprimer";
|
$element['#value'] = $element['#attributes']['value'] = $variables['attributes']['value'] = "Supprimer";
|
||||||
|
|
Loading…
Reference in New Issue