| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * Author: lf
- * Blog: https://blog.feehi.com
- * Email: job@feehi.com
- * Created at: 2018-02-24 14:36
- */
- use common\libs\Constants;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\FriendlyLink */
- ?>
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'name',
- [
- 'attribute' => 'image',
- 'format' => 'raw',
- 'value' => function($model){
- if( empty( $model->image ) ) return '-';
- return "<img style='max-width:100px;max-height:100px' src='" . $model->image . "'>";
- }
- ],
- 'url',
- [
- 'attribute' => 'target',
- 'value' => function($model){
- return Constants::getTargetOpenMethod($model->target);
- }
- ],
- 'sort',
- [
- 'attribute' => 'status',
- 'value' => function($model){
- return Constants::getStatusItems($model->status);
- }
- ],
- 'created_at:datetime',
- 'updated_at:datetime',
- ],
- ]) ?>
|