*/ public const DEFAULT_LAYOUT_CONTAINER_CONF = "defaultLayoutContainer"; public const TAG = "container"; public static function getClassName(?string $type): string { $containerPrefix = ""; if ($type !== Breakpoint::SM) { $containerPrefix = "-$type"; } return "container{$containerPrefix}"; } public static function renderEnterXhtml(TagAttributes $tagAttributes): string { $type = $tagAttributes->getType(); $tagAttributes->addClassName(ContainerTag::getClassName($type)); LogUtility::warning("The container syntax has been deprecated", ":container:deprecated"); return $tagAttributes->toHtmlEnterTag("div"); } public static function renderExitXhtml(): string { return ''; } }