Test Setup Failed
Push — master ( 7ea17d...549782 )
by eXeCUT
14:56
created

DynaGrid   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 68
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A init() 0 48 2
A getGridId() 0 3 1
A run() 0 7 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: execut
5
 * Date: 11/15/17
6
 * Time: 12:14 PM
7
 */
8
9
namespace execut\actions\widgets;
10
11
use execut\yii\jui\WidgetTrait;
12
use kartik\export\ExportMenu;
13
use yii\helpers\ArrayHelper;
14
use yii\helpers\Html;
15
use \kartik\dynagrid\DynaGrid as KartikDynaGrid;
16
17
class DynaGrid extends KartikDynaGrid
18
{
19
    use WidgetTrait;
20
    public $dataProvider = null;
21
    public $storage = KartikDynaGrid::TYPE_DB;
22
    public $filter = null;
23
24
    public function init()
25
    {
26
        $columns = $this->filter->getGridColumns();
27
        $fullExportMenu = ExportMenu::widget([
28
            'dataProvider' => $this->dataProvider,
29
            'columns' => $columns,
30
            'target' => ExportMenu::TARGET_BLANK,
31
            'batchSize' => 1000,
32
            'fontAwesome' => true,
33
            'asDropdown' => false,
34
            'dropdownOptions' => [
35
                'label' => '<i class="glyphicon glyphicon-export"></i> Full'
36
            ],
37
        ]);
38
39
        $this->columns = $columns;
40
41
        $this->gridOptions = ArrayHelper::merge([
42
            'responsive' => false,
43
            'responsiveWrap' => false,
44
            'rowOptions' => function ($row) {
45
                if (method_exists($row, 'getRowOptions')) {
46
                    return $row->getRowOptions();
47
                }
48
            },
49
            'panel' => false,
50
            'export' => [
51
                'fontAwesome' => true,
52
                'itemsAfter'=> [
53
                    '<li role="presentation" class="divider"></li>',
54
                    '<li class="dropdown-header">Export All Data</li>',
55
                    $fullExportMenu
56
                ]
57
            ],
58
            'toggleDataOptions' => [
59
                'maxCount' => 100000,
60
            ],
61
            'filterModel' => $this->filter,
62
//            'toolbar' => $this->getToolbarConfig(),
0 ignored issues
show
Unused Code Comprehensibility introduced by
64% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
63
            'dataProvider' => $this->dataProvider,
64
            'options' => [
65
                'id' => $this->getGridId(),
66
            ],
67
        ], $this->gridOptions);
68
        $this->options['id'] = $this->id;
69
70
        parent::init(); // TODO: Change the autogenerated stub
71
    }
72
73
    public function getGridId() {
74
        return $this->id . '-grid';
75
    }
76
77
    public function run()
78
    {
79
        Html::addCssClass($this->options, $this->getDefaultCssClass());
80
        $this->_registerBundle();
81
82
        return parent::run();
83
    }
84
}