- Issue created by @renatog
- Merge request !3Issue #3472750 by renatog: Add option "nofollow" for links → (Merged) created by renatog
- Status changed to Needs review
7 months ago 1:39pm 7 September 2024 - 🇧🇷Brazil renatog Campinas
MR is created for this: https://git.drupalcode.org/project/ebt_tiles/-/merge_requests/3
- 🇷🇸Serbia levmyshkin Novi Sad, Serbia
Hi Renato, thank you! One thing, you can use ternary operator or ?? instead of this construction:
// Default value for "nofollow". $nofollow = FALSE; // If is configured to add "nofollow", use it. if (!empty($ebt_settings['ebt_settings']['links']['add_nofollow'])) { $nofollow = $ebt_settings['ebt_settings']['links']['add_nofollow']; } $variables['nofollow'] = $nofollow;
$variables['nofollow'] = $ebt_settings['ebt_settings']['links']['add_nofollow'] ?? FALSE;
- 0d52e3f7 committed on 1.4.x
Issue #3472750 by renatog: Add option "nofollow" for links
- 0d52e3f7 committed on 1.4.x
- Status changed to Fixed
7 months ago 8:11am 9 September 2024 - 🇧🇷Brazil renatog Campinas
One thing, you can use ternary operator or ?? instead of this construction
Definitely
Makes sense, I'll work on this