mstrychalski/ms-layout-variables

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

MsViewElements is simple ZF3 module for managing layout variables from module configs

dev-master 2017-09-07 14:00 UTC

This package is not auto-updated.

Last update: 2025-03-22 17:32:29 UTC


README

Created by Michał Strychalski

Introduction

MsLayoutVariables is simple Module, that allows you to set layout variables in module configs. Usefull for hiding or rendering particular elements in layout, depends on controller or module.

Installation using Composer

$ composer require mstrychalski/ms-layout-variables

Usage

Layout variables can be used in various ways, it can be limited for Action only, Module, Controller or even whole application.

Whole application

'layout_variables' => [
        'default' => [
            'showMenu' => false,
            'pageTitle' => 'Awesome title',
            'someArray' => [0,1,2,3]
        ]
    ],

Limited to Module

'layout_variables' => [
        'Application' => [
            'showMenu' => false,
            'pageTitle' => 'Awesome title',
            'someArray' => [0,1,2,3]
        ]
    ],

Limited to Controller in local namespace

'layout_variables' => [
        Controller\IndexController::class => [
            'default' => [
                'showMenu' => false,
                'pageTitle' => 'Awesome title',
                'someArray' => [0,1,2,3]
            ]
        ]
    ],

Or somewhere else

'layout_variables' => [
        \Blog\Controller\IndexController::class => [
            'default' => [
                'showMenu' => false,
                'pageTitle' => 'Awesome title',
                'someArray' => [0,1,2,3]
            ]
        ]
    ],

Limited to Action

'layout_variables' => [
        Controller\IndexController::class => [
            'index' => [
                'showMenu' => false,
                'pageTitle' => 'Awesome title',
                'someArray' => [0,1,2,3]
            ]
        ]
    ],

And now you can use it in your layout:

<?php if($this->showMenu !== false) ?>
    <div class="awesomeMenu"></div>
<?php endif; ?>

This is all, happy haking