xpanel / mobile-detect-bundle
Symfony 7 bundle to detect mobile devices, manage mobile view and redirect to the mobile and tablet version.
Installs: 70
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 153
Type:symfony-bundle
Requires
- php: >=8.2.9
- mobiledetect/mobiledetectlib: ^4.8
- symfony/dependency-injection: ^7.1
- symfony/event-dispatcher: ^7.1
- symfony/framework-bundle: ^7.1
- symfony/yaml: ^7.1
- twig/twig: ^3.14
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.64
- phpstan/extension-installer: ^1.4
- phpstan/phpstan: ^1.12
- phpstan/phpstan-nette: ^1.3
- phpstan/phpstan-phpunit: ^1.4
- phpunit/phpunit: ^11.4
- squizlabs/php_codesniffer: ^3.10
- symfony/dotenv: ^7.1
- symfony/phpunit-bridge: ^7.1
README
MobileDetectBundle
Symfony 7 bundle to detect mobile devices, manage mobile view and redirect to the mobile and tablet version.
This bundle is a fork of suncat2000/MobileDetectBundle. As this project doesn't look maintained anymore, we decided to create & maintain a fork. For more information read our manifest.
Introduction
This Bundle use Mobile_Detect class and provides the following features:
- Detect the various mobile devices by Name, OS, browser User-Agent
- Manages site views for the various mobile devices (
mobile
,tablet
,full
) - Redirects to mobile and tablet sites
Documentation
Installation
composer require tattali/mobile-detect-bundle
Install with Symfony legacy versions: here
Usage
Checking device
use MobileDetectBundle\DeviceDetector\MobileDetectorInterface; public function someaction(MobileDetectorInterface $mobileDetector) { $mobileDetector->isMobile(); $mobileDetector->isTablet(); $mobileDetector->is('iPhone'); }
With Twig
{% if is_mobile() %} {% if is_tablet() %} {% if is_device('iPhone') %} # magic methods is[...]
Switch device view
For switch device view, use device_view
GET parameter:
http://localhost:8000?device_view={full/mobile/tablet}
Going further
Contribute and feedback
Any feedback and contribution will be very appreciated.
License and credits
This bundle is under the MIT license. See the complete license in the bundle
Original authors: suncat2000, HenriVesala, netmikey and all contributors