A Zend Framework 2 module based on Mobile-Detect library to easily use different templates for mobiles, tablets etc.
- Add
"hrevert/ht-mobile-template-module": "0.0.*",
to your composer.json and runphp composer.phar update
- Enable the module in
config/application.config.php
<?php
return [
'ht_mobile_template' => [
'path_stack' => [
'mobile' => [
__DIR__ . '../view/mobile/',
__DIR__ . '../../AnotherModule/view/mobile/',
],
'tablet' => [
__DIR__ . '../view/tablet/',
__DIR__ . '../../AnotherModule/view/tablet/',
]
],
'map' => [
'mobile' => [
'application/index/index' => __DIR__ . '../view/mobile/application/index/index.phtml',
],
'tablet' => [
'application/index/index' => __DIR__ . '../view/tablet/application/index/index.phtml',
],
]
]
];