PHP Classes

File: views/backend/media/view.php

Recommend this page to a friend!
  Classes of Gabriel Alejandro López López   Yii2 Website Module   views/backend/media/view.php   Download  
File: views/backend/media/view.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Yii2 Website Module
Add a content page management system to a site
Author: By
Last change:
Date: 1 month ago
Size: 1,118 bytes
 

Contents

Class file image Download
<?php

use yii\helpers\Html;
use
yii\widgets\DetailView;

/* @var $this yii\web\View */
/* @var $model backend\models\Media */

$this->title = $model->id;
$this->params['breadcrumbs'][] = ['label' => Yii::t('website','Media'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="media-view">

    <h1><?= Html::encode($this->title) ?></h1>

    <p>
        <?= Html::a(Yii::t('website','Update'), ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
<?= Html::a(Yii::t('website','Delete'), ['delete', 'id' => $model->id], [
           
'class' => 'btn btn-danger',
           
'data' => [
               
'confirm' => Yii::t('website','Are you sure you want to delete this item?'),
               
'method' => 'post',
            ],
        ])
?>
</p>

    <?= DetailView::widget([
       
'model' => $model,
       
'attributes' => [
           
'id',
           
'website_id',
           
'mime_type',
           
'filename',
           
'created_at',
           
'updated_at',
           
'created_by',
           
'updated_by',
        ],
    ])
?>

</div>