Your IP : 216.73.216.79


Current Path : /var/www/html/ebookingdbkl/common/components/
Upload File :
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']);
    }

}