From f4925f66954124224ccc66dff078f806db46e90a Mon Sep 17 00:00:00 2001 From: Damien <damien.burel@maarch.org> Date: Tue, 30 Apr 2019 18:11:18 +0200 Subject: [PATCH] FEAT #9419 TIME 0:15 user entity_path available for fusion --- modules/templates/datasources/letterbox_attachment.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/templates/datasources/letterbox_attachment.php b/modules/templates/datasources/letterbox_attachment.php index f670794d887..0598e155187 100755 --- a/modules/templates/datasources/letterbox_attachment.php +++ b/modules/templates/datasources/letterbox_attachment.php @@ -59,6 +59,7 @@ if (!empty($res_id)) { foreach ($dest as $column => $value) { $datasources['user'][0][$column] = $value; } + $datasources['user'][0]['entity_path'] = \Entity\models\EntityModel::getEntityPathByEntityId(['entityId' => $_SESSION['user']['primaryentity']['id'], 'path' => '']); } //COMPLEMENTARY CURRENT USER PARENT ENTITY INFO @@ -68,6 +69,7 @@ if (!empty($res_id)) { foreach ($dest as $column => $value) { $datasources['user'][0]['parent_'.$column] = $value; } + $datasources['user'][0]['parent_entity_path'] = \Entity\models\EntityModel::getEntityPathByEntityId(['entityId' => $datasources['user'][0]['parent_entity_id'], 'path' => '']); } //multicontact -- GitLab