1 | <?php |
||
25 | abstract class AbstractMaterialDesignIconicFontTwigExtension extends AbstractTwigExtension { |
||
26 | |||
27 | /** |
||
28 | * Constructor. |
||
29 | * |
||
30 | * @param Twig_Environment $twigEnvironment The twig environment. |
||
31 | */ |
||
32 | protected function __construct(Twig_Environment $twigEnvironment) { |
||
35 | |||
36 | /** |
||
37 | * Displays a Material Design Iconic Font icon. |
||
38 | * |
||
39 | * @param string $name The name. |
||
40 | * @param string $size The size. |
||
41 | * @param bool $fixedWidth Fixed width ? |
||
42 | * @param string $border The border |
||
43 | * @param string $pull The pull. |
||
44 | * @param string $spin The spin. |
||
45 | * @param string $rotate The rotate. |
||
46 | * @param string $flip The flip. |
||
47 | * @param string $style The style. |
||
48 | * @return string Returns the Material Design Iconic Font icon. |
||
49 | */ |
||
50 | protected function materialDesignIconicFontIcon($name, $size, $fixedWidth, $border, $pull, $spin, $rotate, $flip, $style) { |
||
77 | |||
78 | /** |
||
79 | * Displays a Material Design Iconic Font list. |
||
80 | * |
||
81 | * @param array|string $items The items. |
||
82 | * @return string Returns the Material Design Iconic Font list. |
||
83 | */ |
||
84 | protected function materialDesignIconicFontList($items) { |
||
92 | |||
93 | /** |
||
94 | * Displays a Material Design Iconic Font list icon. |
||
95 | * |
||
96 | * @param string $icon The icon. |
||
97 | * @param string $content The content. |
||
98 | * @return string Returns the Material Design Iconic Font list icon. |
||
99 | */ |
||
100 | protected function materialDesignIconicFontListIcon($icon, $content) { |
||
109 | |||
110 | } |
||
111 |