|
|
|
@ -32,27 +32,27 @@ class ActionColumn extends Column
|
|
|
|
|
protected function initDefaultButtons() |
|
|
|
|
{ |
|
|
|
|
if (!isset($this->buttons['view'])) { |
|
|
|
|
$this->buttons['view'] = function ($model, $column) { |
|
|
|
|
$this->buttons['view'] = function ($model, $key, $index, $column) { |
|
|
|
|
/** @var ActionColumn $column */ |
|
|
|
|
$url = $column->createUrl($model, 'view'); |
|
|
|
|
$url = $column->createUrl($model, $key, $index, 'view'); |
|
|
|
|
return Html::a('<span class="glyphicon glyphicon-eye-open"></span>', $url, [ |
|
|
|
|
'title' => Yii::t('yii', 'View'), |
|
|
|
|
]); |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
if (!isset($this->buttons['update'])) { |
|
|
|
|
$this->buttons['update'] = function ($model, $column) { |
|
|
|
|
$this->buttons['update'] = function ($model, $key, $index, $column) { |
|
|
|
|
/** @var ActionColumn $column */ |
|
|
|
|
$url = $column->createUrl($model, 'update'); |
|
|
|
|
$url = $column->createUrl($model, $key, $index, 'update'); |
|
|
|
|
return Html::a('<span class="glyphicon glyphicon-pencil"></span>', $url, [ |
|
|
|
|
'title' => Yii::t('yii', 'Update'), |
|
|
|
|
]); |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
if (!isset($this->buttons['delete'])) { |
|
|
|
|
$this->buttons['delete'] = function ($model, $column) { |
|
|
|
|
$this->buttons['delete'] = function ($model, $key, $index, $column) { |
|
|
|
|
/** @var ActionColumn $column */ |
|
|
|
|
$url = $column->createUrl($model, 'delete'); |
|
|
|
|
$url = $column->createUrl($model, $key, $index, 'delete'); |
|
|
|
|
return Html::a('<span class="glyphicon glyphicon-trash"></span>', $url, [ |
|
|
|
|
'title' => Yii::t('yii', 'Delete'), |
|
|
|
|
'data-confirm' => Yii::t('yii', 'Are you sure to delete this item?'), |
|
|
|
@ -64,34 +64,30 @@ class ActionColumn extends Column
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @param \yii\db\ActiveRecord $model |
|
|
|
|
* @param mixed $key the key associated with the data model |
|
|
|
|
* @param integer $index |
|
|
|
|
* @param string $action |
|
|
|
|
* @return string |
|
|
|
|
*/ |
|
|
|
|
public function createUrl($model, $action) |
|
|
|
|
public function createUrl($model, $key, $index, $action) |
|
|
|
|
{ |
|
|
|
|
if ($this->urlCreator instanceof Closure) { |
|
|
|
|
return call_user_func($this->urlCreator, $model, $action); |
|
|
|
|
return call_user_func($this->urlCreator, $model, $key, $index, $action); |
|
|
|
|
} else { |
|
|
|
|
$params = $model->getPrimaryKey(true); |
|
|
|
|
if (count($params) === 1) { |
|
|
|
|
$params = ['id' => reset($params)]; |
|
|
|
|
} |
|
|
|
|
$params = is_array($key) ? $key : ['id' => $key]; |
|
|
|
|
return Yii::$app->controller->createUrl($action, $params); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Renders the data cell content. |
|
|
|
|
* @param mixed $model the data model |
|
|
|
|
* @param integer $index the zero-based index of the data model among the models array returned by [[dataProvider]]. |
|
|
|
|
* @return string the rendering result |
|
|
|
|
* @inheritdoc |
|
|
|
|
*/ |
|
|
|
|
protected function renderDataCellContent($model, $index) |
|
|
|
|
protected function renderDataCellContent($model, $key, $index) |
|
|
|
|
{ |
|
|
|
|
return preg_replace_callback('/\\{(\w+)\\}/', function ($matches) use ($model) { |
|
|
|
|
return preg_replace_callback('/\\{(\w+)\\}/', function ($matches) use ($model, $key, $index) { |
|
|
|
|
$name = $matches[1]; |
|
|
|
|
if (isset($this->buttons[$name])) { |
|
|
|
|
return call_user_func($this->buttons[$name], $model, $this); |
|
|
|
|
return call_user_func($this->buttons[$name], $model, $key, $index, $this); |
|
|
|
|
} else { |
|
|
|
|
return ''; |
|
|
|
|
} |
|
|
|
|