VariantColumn.php
2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
namespace artbox\catalog\catalog\columns;
use artbox\core\admin\grid\columns\Column;
use yii\db\Query;
use yii\helpers\Html;
class VariantColumn extends Column
{
/**
* Default options
*
* @var array
*/
public $contentOptions = [
'class' => 'number-adm',
];
/**
* @deprecated
* @var array
*/
public $filterOptions = [
'class' => 'form-control',
];
protected $variantCounts = [];
public function init()
{
parent::init();
$reader = ( new Query() )->select(
[
'product_id',
'count(product_id) as count',
]
)
->from('variant')
->groupBy('product_id')
->where(
[
'product_id' => $this->grid->dataProvider->getKeys(),
]
)
->createCommand()
->query();
while ($row = $reader->read()) {
$this->variantCounts[ $row[ 'product_id' ] ] = $row[ 'count' ];
}
}
/**
* @inheritdoc
*
* @param mixed $model
* @param mixed $key
* @param int $index
*
* @return string
*/
protected function renderDataCellContent($model, $key, $index)
{
return $this->variantCounts[$key];
}
/**
* @inheritdoc
* @return string
*/
public function renderFilterCell()
{
return Html::tag('td', $this->renderFilterCellContent(), []);
}
}