zelpex / layouts
There is no license information available for the latest version (dev-master) of this package.
Zelpex Layouts module is a simple ZF2 module that simply allows you to specify alternative layouts to use for each module.
dev-master
2013-03-18 16:46 UTC
Requires
- php: >=5.3
This package is not auto-updated.
Last update: 2024-11-09 15:41:16 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