1 | <?php |
||
23 | class FontAwesomePluginTwigExtension extends AbstractPluginTwigExtension { |
||
24 | |||
25 | /** |
||
26 | * Service name. |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | const SERVICE_NAME = "webeweb.bundle.bootstrapbundle.twig.extension.plugin.fontawesome"; |
||
31 | |||
32 | /** |
||
33 | * Constructor. |
||
34 | */ |
||
35 | public function __construct() { |
||
38 | |||
39 | /** |
||
40 | * Displays a Font Awesome. |
||
41 | * |
||
42 | * @param array $args The arguments. |
||
43 | * @return Returns a Font Awesome. |
||
44 | */ |
||
45 | public function fontAwesomeFunction(array $args = []) { |
||
48 | |||
49 | /** |
||
50 | * Get the Twig functions. |
||
51 | * |
||
52 | * @return array Returns the Twig functions. |
||
53 | */ |
||
54 | public function getFunctions() { |
||
59 | |||
60 | } |
||
61 |