update gui get image

This commit is contained in:
2020-11-27 13:46:06 +07:00
parent 566c065303
commit 73b44eb2af
5 changed files with 230 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php
namespace app\helpers;
use Yii;
use yii\helpers\Html;
use yii\helpers\Url;
use app\models\common;
class CaptureLogsGrid {
static $path = "";
public static function path() {
return self::$path;
}
public static function engineNameFunc() {
return function ($data) {
return $data->app->app_name;
};
}
public static function getLayout() {
return "{items}<div class='row'><div class='col-md-4'>{summary}</div><div class='col-md-8 text-right'>{pager}</div></div>";
}
public static function actionTemplate() {
return "{update} {delete}";
}
}