Completed
Push — master ( 97b926...69d6ff )
by WEBEWEB
06:52
created

CSSResourcesProvider   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 54
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 54
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getResources() 0 47 1
1
<?php
2
3
/**
4
 * This file is part of the bootstrap-bundle package.
5
 *
6
 * (c) 2018 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Bundle\BootstrapBundle\Provider\Resources;
13
14
/**
15
 * CSS resources provider.
16
 *
17
 * @author webeweb <https://github.com/webeweb/>
18
 * @package WBW\Bundle\BootstrapBundle\Provider\Resources
19
 */
20
class CSSResourcesProvider extends AbstractResourcesProvider implements CSSResourcesProviderInterface {
21
22
    /**
23
     * {@inheritdoc}
24
     */
25
    public function getResources() {
26
27
        // Initialize the resources.
28
        $resources = [];
29
30
        // Animate.css
31
        $resources[] = "/animate.css-3.5.2/animate.min.css";
32
        // Bootstrap
33
        $resources[] = "/bootstrap-3.3.7/css/bootstrap.min.css";
34
        // Bootstrap Colorpicker plug-in
35
        $resources[] = "/bootstrap-colorpicker-2.5.1/css/bootstrap-colorpicker.min.css";
36
        // Bootstrap Datepicker plug-in
37
        $resources[] = "/bootstrap-datepicker-1.7.1/css/bootstrap-datepicker.min.css";
38
        // Bootstrap Daterangepicker plugin
39
        $resources[] = "/bootstrap-daterangepicker-2.1.27/daterangepicker.css";
40
        // Bootstrap Markdown plug-in
41
        $resources[] = "/bootstrap-markdown-2.10.0/css/bootstrap-markdown.min.css";
42
        // Bootstrap Select plug-in
43
        $resources[] = "/bootstrap-select-1.12.4/css/bootstrap-select.min.css";
44
        // Bootstrap Slider plug-in
45
        $resources[] = "/bootstrap-slider-10.0.0/css/bootstrap-slider.min.css";
46
        // Bootstrap Social plug-in
47
        $resources[] = "/bootstrap-social-5.1.1/bootstrap-social.css";
48
        // Bootstrap Tagsinput plug-in
49
        $resources[] = "/bootstrap-tagsinput-0.8.0/bootstrap-tagsinput.css";
50
        // Bootstrap Timepicker plug-in
51
        $resources[] = "/bootstrap-timepicker-0.5.2/css/bootstrap-timepicker.min.css";
52
        // Bootstrap WYSIWIG plug-in
53
        $resources[] = "/bootstrap-wysiwyg-0.3.3/bootstrap3-wysihtml5.min.css";
54
        // Font Awesome
55
        $resources[] = "/fontawesome-5.0.10/css/fontawesome-all.min.css";
56
        // jQuery Select2 plug-in
57
        $resources[] = "/jquery-select2-4.0.5/css/select2.min.css";
58
        // Material Design Color Palette
59
        $resources[] = "/material-design-color-palette-1.1.0/material-design-color-palette.min.css";
60
        // Material Design Hierarchical Display
61
        $resources[] = "/material-design-hierarchical-display-1.0.1/zmd.hierarchical-display.min.css";
62
        // Material Design Iconic Font
63
        $resources[] = "/material-design-iconic-font-2.2.0/css/material-design-iconic-font.min.css";
64
        // Meteocons
65
        $resources[] = "/meteocons/stylesheet.css";
66
        // waitMe
67
        $resources[] = "/waitme-1.19/waitMe.min.css";
68
69
        // Return the resources.
70
        return $resources;
71
    }
72
73
}
74