From 8740201c1e7c3fcfd7cc88e8763b187347bfa021 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 9 Oct 2025 16:59:14 +0200 Subject: [PATCH] wip #7782 @1 --- app/Models/Traits/PublicationSettings.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Models/Traits/PublicationSettings.php b/app/Models/Traits/PublicationSettings.php index 0fee67e24..b899eeeb5 100644 --- a/app/Models/Traits/PublicationSettings.php +++ b/app/Models/Traits/PublicationSettings.php @@ -1087,6 +1087,8 @@ trait PublicationSettings $this->_addSettingField('linkTrackerRegexp', LongText::class, $this->__('Tracking des liens applicables aux liens du domaine')); $this->_addSettingField('', FormSeparator::class); $this->_addSettingField('linkFilePrefix', LongText::class, $this->__('Préfixer les liens de téléchargement')); + $this->_addSettingField('', FormSeparator::class); + $this->_addSettingField('autolinkRule', SelectFromArray::class, $this->__('Règle pour l\'ajout des liens via excel'), ['options' => ['web' => 'Lien web', 'cart' => __('Lien panier'), 'steelite' => 'Steelite']]); } protected function _multimedia() -- 2.39.5