Skip to content

Commit

Permalink
Update LanguageLineResource.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Skullbock authored Nov 20, 2023
1 parent d2d175a commit f1e29ff
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Resources/LanguageLineResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,15 @@ public static function getNavigationLabel(): string
return __('translation-manager::translations.translation-navigation-label');
}

public static function getNavigationIcon(): ?string
{
if (config('translation-manager.navigation_icon') === false) {
return null;
}

return config('translation-manager.navigation_icon', static::$navigationIcon);
}

public static function getNavigationGroup(): ?string
{
if (config('translation-manager.navigation_group_translation_key')) {
Expand Down

0 comments on commit f1e29ff

Please sign in to comment.