Completed
Push — master ( 27924e...556d57 )
by Klochok
11:04
created

GoodsCarousel   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 18
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getPluginInit() 0 13 1
1
<?php
2
3
namespace hiqdev\themes\obaju\widgets;
4
5
class GoodsCarousel extends OwlCarousel
6
{
7
    public $containerOptions = ['class' => 'product-slider owl-carousel owl-theme'];
8
9
    public function getPluginInit()
10
    {
11
        return "
12
        $('.product-slider').owlCarousel({
13
            navigation: true, // Show next and prev buttons
14
            slideSpeed: 300,
15
            paginationSpeed: 400,
16
            afterInit: function() {
17
                $('.product-slider .item').css('visibility', 'visible');
18
            }
19
        });
20
        ";
21
    }
22
}
23