arter/amos-layout

There is no license information available for the latest version (1.1.7) of this package.

Amos Basic Layout

Installs: 573

Dependents: 1

Suggesters: 0

Security: 0

Type:component

1.1.7 2023-07-18 08:58 UTC

README

Templates, layouts and styles for amos basic installation

Installation

  1. The preferred way to install this extension is through composer.

    Either run

     composer require arter/amos-layout
    

    or add

     "arter/amos-layout": "~1.0"
    

    to the require section of your composer.json file.

  2. Add module to your main config in common:

    <?php
    $config = [
        'modules' => [
            'layout' => [
                'class' => 'arter\amos\layout\Module',
                'advancedLogoutActions' => true, // [OPTIONAL] if you want to display
                // two different logout buttons (one that redirects to login page and one that
                // redirects to main frontend page set in (common) params['platform']['frontendUrl'])
            ],
        ],
    ];
    
  3. Add Bootstrap

     <?php
     $config = [
        'bootstrap' => ['layout']
     ];
    

Tools

Get base asset, required for all other assets, this mades easier to use a custom amosLayout instance

<?php

class MyCustomAppAsset extends AssetBundle
{
    public $depends = [];

    public function init()
    {
        $this->depends[] = \Yii::$app->layout->baseAssetClass;

        parent::init();
    }
}

PARAMS

search navbar menu

'searchNavbar' => true