list accompanying course work

This commit is contained in:
2021-06-25 14:59:10 +02:00
parent d26e08324c
commit cb67605bd2
8 changed files with 130 additions and 12 deletions

View File

@@ -13,9 +13,14 @@ class SocialActionRender implements ChillEntityRenderInterface
private EngineInterface $engine;
public const SEPARATOR_KEY = 'default.separator';
/**
* if true, the action will not be encapsulated into a "badge"
*/
public const NO_BADGE = 'no-badge';
public const DEFAULT_ARGS = [
self::SEPARATOR_KEY => ' > ',
self::SEPARATOR_KEY => ' > ',
self::NO_BADGE => false,
];
public function __construct(TranslatableStringHelper $translatableStringHelper, EngineInterface $engine)