teckhouse / mdetect-bundle
Mobile device detector bundle for Symfony2 (MDetect Wrapper)
Installs: 208
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
Requires (Dev)
- symfony/framework-bundle: >=2.1,<2.2-dev
This package is not auto-updated.
Last update: 2025-03-24 16:35:52 UTC
README
Add TeckHouseMDetectBundle in your composer.json:
{
"require": {
"teckhouse/mdetect-bundle": "dev-master"
}
}
Install the bundle with composer:
$ php composer.phar update teckhouse/mdetect-bundle
Enable the bundle
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// Yours bundles
// [...]
// Mobile Detect Bundle
new TeckHouse\MDetectBundle\TeckHouseMDetectBundle(),
);
}
Configure
there is only one parameter :)
in config.yml:
teckhouse_mdetect:
inject_value: [ true | false ]
Usage
if the injection in request is setted to true you will find the var "$userDeviceType" in request parameters bug that indentify the device type: "mobile", "tablet", "desk".
To get the value simple do this:
$request->server->get("userDeviceType");
If the injection is setted to "off" you can use the service to get infos about the device:
$this->get('teckhouse_mdetect.wrapper');
In any case you can use Twig filter extension to retrive the status in template:
{{ getDeviceType() }}