digifa/mobile-detect-bundle
最新稳定版本:v2.3.2.4
Composer 安装命令:
composer require digifa/mobile-detect-bundle
包简介
Symfony 6.4, 7.0 / PHP 8.2 bundle to detect mobile devices, manage mobile view and redirect to the mobile and tablet version.
关键字:
README 文档
README
MobileDetectBundle
Symfony 6.4.x / PHP 8.2 bundle to detect mobile devices, manage mobile view and redirect to the mobile and tablet version.
This bundle is a fork of tattali/MobileDetectBundle that 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: tattali, suncat2000, HenriVesala, netmikey and all contributors
统计信息
- 总下载量: 195
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-10-16

