1 | <?php |
||
27 | class Head |
||
28 | { |
||
29 | const VERSION_JQUERY = '2.2.0'; |
||
30 | const VERSION_BOOTSTRAP = '3.3.7'; |
||
31 | const VERSION_FONTAWESOME = '4.7.0'; |
||
32 | |||
33 | //---- Jquery |
||
34 | public function getJquery($useMinified = true, $version = self::VERSION_JQUERY) : string |
||
38 | |||
39 | public function getJqueryLink($useMinified = true, $version = self::VERSION_BOOTSTRAP) : string |
||
47 | |||
48 | //---- Bootstrap |
||
49 | public function getBootstrap($useMinified = true, $version = self::VERSION_BOOTSTRAP) : string |
||
53 | |||
54 | public function getBootstrapCss($useMinified = true, $version = self::VERSION_BOOTSTRAP) : string |
||
58 | |||
59 | public function getBootstrapJs($useMinified = true, $version = self::VERSION_BOOTSTRAP) : string |
||
63 | |||
64 | public function getBootstrapCssLink($useMinified = true, $version = self::VERSION_BOOTSTRAP) : string |
||
72 | |||
73 | public function getBootstrapJsLink($useMinified = true, $version = self::VERSION_BOOTSTRAP) : string |
||
81 | |||
82 | //---- Fontawesome |
||
83 | public function getFontAwesome($useMinified = true, $version = self::VERSION_FONTAWESOME) : string |
||
87 | |||
88 | public function getFontAwesomeCssLink($useMinified = true, $version = self::VERSION_FONTAWESOME) : string |
||
96 | } |
||
97 |