| Current Path : /var/www/html/ebookingdbkl/common/components/ |
| Current File : /var/www/html/ebookingdbkl/common/components/GridActionColumn.php |
<?php
namespace common\components;
use yii\grid\ActionColumn;
use yii\helpers\Html;
use yii\helpers\Url;
class GridActionColumn extends ActionColumn
{
/**
* @inheritdoc
*/
protected function renderFilterCellContent()
{
return Html::a('Clear', Url::to(['']), ['class' => 'btn btn-default form-control']);
}
}