PHP Classes

File: views/backend/page/index.php

Recommend this page to a friend!
  Classes of Gabriel Alejandro López López   Yii2 Website Module   views/backend/page/index.php   Download  
File: views/backend/page/index.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: 918 bytes
 

Contents

Class file image Download
<?php

use yii\data\ArrayDataProvider;

$this->title = 'Pages';

if (!
$parent) {
   
$this->params['breadcrumbs'][] = Yii::t('website', $this->title);
}

?>

<header class="mb-4 pb-2 border-bottom">
    <h1><?= $this->title ?></h1>
</header>

<?php if ($parent): ?>
<?= $this->render('_list', [
       
'dataProvider' => $dataProvider,
    ])
?>
<?php
else: ?>
<?= \yii\bootstrap4\Tabs::widget([
       
'items' => array_map(function ($item) {
            return [
               
'label' => $item,
               
'content' => $this->render('_list', [
                   
'dataProvider' => new ArrayDataProvider([
                       
'allModels' => Yii::$app->website->getRootPages()->byLanguage($item)->orderBy('position')->all(),
                    ]),
                   
'language' => $item,
                ])
            ];
        },
$this->context->module->languages)
    ])
?>

<?php endif; ?>