2024-02-16 15:13:29 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use app\models\Share;
|
|
|
|
use yii\helpers\Html;
|
|
|
|
use yii\helpers\Url;
|
|
|
|
use yii\grid\ActionColumn;
|
|
|
|
use yii\grid\GridView;
|
|
|
|
|
|
|
|
/** @var yii\web\View $this */
|
|
|
|
/** @var app\models\ShareSearch $searchModel */
|
|
|
|
/** @var yii\data\ActiveDataProvider $dataProvider */
|
|
|
|
|
|
|
|
$this->title = '分享';
|
|
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
|
|
?>
|
|
|
|
<div class="share-index">
|
|
|
|
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<?= Html::a('创建分享', ['home/index'], ['class' => 'btn btn-success']) ?>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<?php // echo $this->render('_search', ['model' => $searchModel]); ?>
|
|
|
|
|
|
|
|
<?= GridView::widget([
|
|
|
|
'dataProvider' => $dataProvider,
|
|
|
|
'filterModel' => $searchModel,
|
|
|
|
'columns' => [
|
2024-02-17 16:43:39 +08:00
|
|
|
['class' => 'yii\grid\SerialColumn',
|
|
|
|
'headerOptions' => ['style' => 'width:4%;'],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'attribute' => 'share_id',
|
|
|
|
'headerOptions' => ['style' => 'width:6%;'],
|
|
|
|
],
|
2024-02-16 15:13:29 +08:00
|
|
|
// 'sharer_id',
|
2024-02-17 16:43:39 +08:00
|
|
|
[
|
|
|
|
'attribute' => 'file_relative_path',
|
|
|
|
'headerOptions' => ['style' => 'width:60%;'],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'attribute' => 'access_code',
|
2024-04-07 14:33:33 +08:00
|
|
|
'enableSorting' => false,
|
2024-02-17 16:43:39 +08:00
|
|
|
'headerOptions' => ['style' => 'width:7%;'],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'attribute' => 'creation_date',
|
|
|
|
'headerOptions' => ['style' => 'width:15%;'],
|
|
|
|
],
|
2024-02-16 15:13:29 +08:00
|
|
|
[
|
|
|
|
'class' => ActionColumn::className(),
|
2024-02-17 16:43:39 +08:00
|
|
|
'headerOptions' => ['style' => 'width:8%;'],
|
2024-02-16 15:13:29 +08:00
|
|
|
'urlCreator' => function ($action, Share $model, $key, $index, $column) {
|
|
|
|
return Url::toRoute([$action, 'share_id' => $model->share_id]);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
],
|
|
|
|
]); ?>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|