1 | <?php |
||
26 | abstract class AbstractModalTwigExtension extends AbstractAdminBSBTwigExtension { |
||
27 | |||
28 | /** |
||
29 | * Typography. |
||
30 | * |
||
31 | * @var TypographyTwigExtension |
||
32 | */ |
||
33 | private $typography; |
||
34 | |||
35 | /** |
||
36 | * Constructor. |
||
37 | * |
||
38 | * @param TypographyTwigExtension $typography The typography. |
||
39 | */ |
||
40 | protected function __construct(TypographyTwigExtension $typography) { |
||
44 | |||
45 | /** |
||
46 | * Displays an AdminBSB modal header. |
||
47 | * |
||
48 | * @param string $content The content. |
||
49 | * @param string $icon The icon. |
||
50 | * @return string Returns the AdminBSB modal header. |
||
51 | */ |
||
52 | protected function adminBSBModalHeader($content, $icon) { |
||
63 | |||
64 | /** |
||
65 | * Get the typography. |
||
66 | * |
||
67 | * @return TypographyTwigExtension Returns the typography. |
||
68 | */ |
||
69 | public function getTypography() { |
||
72 | |||
73 | /** |
||
74 | * Set the typography. |
||
75 | * |
||
76 | * @param TypographyTwigExtension $typography The typography. |
||
77 | * @return AbstractCardTwigExtension Returns this card Twig extension. |
||
78 | */ |
||
79 | protected function setTypography(TypographyTwigExtension $typography) { |
||
83 | |||
84 | } |
||
85 |