zelpex / layouts
Zelpex Layouts module is a simple ZF2 module that simply allows you to specify alternative layouts to use for each module.
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/zelpex/layouts
Requires
- php: >=5.3
This package is not auto-updated.
Last update: 2025-10-11 20:14:51 UTC
README
Version 1.0 Created by Andrew Boyko
Introduction
EasyLayouts is a simple ZF2 module that simply allows you to specify alternative layouts to use for each module.
The default layout is layout/layout from ZendSkeletonApplication.
Usage
Using EasyLayouts is simple. In any module config or autoloaded config file simply specify the following:
//php array( 'module_layout' => array( 'moduleName' => 'layout/any-layout-name', ), ); //
That's it! This is taken from https://github.com/EvanDotPro/EdpModuleLayouts and updated