EdpModuleLayouts
EdpModuleLayouts copied to clipboard
A very simple ZF2 module for making module-specific layouts insanely easy.
Laminas support
Can you provide a license in the composer.json file like https://github.com/EvanDotPro/EdpSuperluminal has in https://github.com/EvanDotPro/EdpSuperluminal/blob/master/composer.json#L4 ?
I tried to use this module to change the layout for the Apigility Documentation module which is loaded be ZF\zfcampus\zf-apigility-documentation. The function that grabs the namespace from the class name...
I implemented the EdpModuleLayouts as instructed in the readme and didnt receive any errors from zend but the layout for my admin module wasn't being applied. After reading around I...
I just found out that when I use this module, it somehow rewrites the "error/404" and "error/index" entries in my config. Therefore any module using EDP would output its default...
still needs an update to make it properly work when: /namespace/subnamespace1/subnamespace2/ /namespace/subnamespace1/ since both would return "true" in strpos
Sometimes it is useful to have few modules for some project grouped under one namespace: MyProject\System MyProject\Page MyProject\User Currently EdpModuleLayouts does not work for such module names: array( 'module_layouts' =>...
allows to specify a classname in config, for assigning individual layouts also to individual controllers, example: 'module_layouts' => array( 'User' => 'user/layout', // working 'User\Controller\IndexController' => 'user/index/layout', // working, too...
Add the ability to add a custom layout for a not found mvc event using the "Not Found" config key.