1 | <?php |
||
20 | class FontAwesomeIconRenderer { |
||
21 | |||
22 | /** |
||
23 | * Render an animation. |
||
24 | * |
||
25 | * @param FontAwesomeIconInterface $fontAwesomeIcon The Font Awesome icon. |
||
26 | * @return string Returns the rendered animation in case of success, null otherwise. |
||
27 | */ |
||
28 | public static function renderAnimation(FontAwesomeIconInterface $fontAwesomeIcon) { |
||
31 | |||
32 | /** |
||
33 | * Render a bordered. |
||
34 | * |
||
35 | * @param FontAwesomeIconInterface $fontAwesomeIcon The Font Awesome icon. |
||
36 | * @return string Returns the rendered bordered in case of success, null otherwise. |
||
37 | */ |
||
38 | public static function renderBordered(FontAwesomeIconInterface $fontAwesomeIcon) { |
||
41 | |||
42 | /** |
||
43 | * Render a fixed width. |
||
44 | * |
||
45 | * @param FontAwesomeIconInterface $fontAwesomeIcon The Font Awesome icon. |
||
46 | * @return string Returns the rendered fixed width in case of success, null otherwise. |
||
47 | */ |
||
48 | public static function renderFixedWidth(FontAwesomeIconInterface $fontAwesomeIcon) { |
||
51 | |||
52 | /** |
||
53 | * Render a font. |
||
54 | * |
||
55 | * @param FontAwesomeIconInterface $fontAwesomeIcon The Font Awesome icon. |
||
56 | * @return string Returns the rendered font. |
||
57 | */ |
||
58 | public static function renderFont(FontAwesomeIconInterface $fontAwesomeIcon) { |
||
61 | |||
62 | /** |
||
63 | * Render a name. |
||
64 | * |
||
65 | * @param FontAwesomeIconInterface $fontAwesomeIcon The Font Awesome icon. |
||
66 | * @return string Returns the rendered name in case of success, false otherwise. |
||
67 | */ |
||
68 | public static function renderName(FontAwesomeIconInterface $fontAwesomeIcon) { |
||
71 | |||
72 | /** |
||
73 | * Render a pull. |
||
74 | * |
||
75 | * @param FontAwesomeIconInterface $fontAwesomeIcon The Font Awesome icon. |
||
76 | * @return string Returns the rendered pull in case of success, null otherwise. |
||
77 | */ |
||
78 | public static function renderPull(FontAwesomeIconInterface $fontAwesomeIcon) { |
||
81 | |||
82 | /** |
||
83 | * Render a size. |
||
84 | * |
||
85 | * @param FontAwesomeIconInterface $fontAwesomeIcon The Font Awesome icon. |
||
86 | * @return string Returns the rendered size in case of success, null otherwise. |
||
87 | */ |
||
88 | public static function renderSize(FontAwesomeIconInterface $fontAwesomeIcon) { |
||
91 | |||
92 | /** |
||
93 | * Render a style. |
||
94 | * |
||
95 | * @param FontAwesomeIconInterface $fontAwesomeIcon The Font Awesome icon. |
||
96 | * @return string Returns the rendered style. |
||
97 | */ |
||
98 | public static function renderStyle(FontAwesomeIconInterface $fontAwesomeIcon) { |
||
101 | |||
102 | } |
||
103 |