Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
36 | protected function renderDataCellContent($model, $key, $index) |
||
37 | { |
||
38 | return Yii::createObject(ArrayHelper::merge([ |
||
39 | 'class' => XEditable::class, |
||
40 | 'model' => $model, |
||
41 | 'value' => $this->value, |
||
42 | 'attribute' => $this->attribute, |
||
43 | 'pluginOptions' => array_merge($this->pluginOptions, ['selector' => ".editable[data-pk={$key}][data-name={$this->attribute}]"]), |
||
44 | 'linkOptions' => [ |
||
45 | 'style' => ['word-break' => 'break-all'], |
||
46 | ], |
||
47 | ], $this->widgetOptions))->run(); |
||
48 | } |
||
49 | } |
||
50 |