analyticsface / yii2-mobile-detector
Mobile detector for Yii2 Framework.
Installs: 43
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- mobiledetect/mobiledetectlib: ^2.8
- yiisoft/yii2: ~2.0
This package is not auto-updated.
Last update: 2025-03-30 06:04:32 UTC
README
Installation
The preferred way to install this extension is through composer. This requires the composer-asset-plugin, which is also a dependency for yii2 – so if you have yii2 installed, you are most likely already set.
Either run
composer require analyticsface/yii2-mobile-detector:*
or add
"analyticsface/yii2-mobile-detector" : "*"
to the require section of your application's composer.json
file.
Usage
add rule for hide 'index' action
'<controller:\w+>/' => '<controller>/index'
- Add to /frontend/config/bootstrap.php
Yii::$container->set('aface\mobiledetector\mode\ClientMode', function () {
return new \aface\mobiledetector\mode\ClientMode(Yii::$app->request);
});
- Add to 'components' view
'components' => [
'view' => function (\aface\mobiledetector\mode\ViewMode $mode) {
return Yii::createObject([
'class' => 'yii\web\View',
'theme' => $mode->isMobile()
? [
'basePath' => '@frontend/themes/mobile',
'baseUrl' => '@web',
'pathMap' => [
'@frontend/views' => '@frontend/themes/mobile/views',
],
]
: [
'basePath' => '@frontend/themes/desktop',
'baseUrl' => '@web',
'pathMap' => [
'@frontend/views' => '@frontend/themes/desktop/views',
],
],
]);
},
...
]
- Add filter 'as viewMode'
'components' => [
...
],
'as viewMode' => [
'class' => 'aface\mobiledetector\filter\ViewModeFilter',
'expire' => 30 * 86400 // 30 days
],
'params' => $params,
- Add to layout switch link
<?= Html::a('Mobile version', Url::current(['mode' => 'mobile']), ['data-method' => 'post']) ?>
- If css/js files used from theme
a) add to main Asset
public $sourcePath = '@theme';
b) add alias
'components' => [
'view' => function (\aface\mobiledetector\mode\ViewMode $mode) {
$theme = Yii::$app->request->getCookies()->getValue(\aface\mobiledetector\mode\ClientMode::COOKIE_NAME);
if ($theme === null) {
$theme = $mode->isMobile() ? 'mobile' : 'desktop';
}
Yii::setAlias('theme', '@frontend/themes/' . $theme);
...
},
...
]