andres-montanez/useragentstring-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Symfony2 bundle for integrating UserAgentString

0.2.5 2016-04-07 16:01 UTC

This package is auto-updated.

Last update: 2021-02-19 00:35:20 UTC


README

#UserAgentString

Integrates User Agent String project into Symfony

After enabling the bundle, you can access the user_agent service

<?php
    class HomeController extends Controller
    {
        public function indexAction() {
            $ua = $this->get('user_agent');
            if ($ua->getCurrent()->isMobile()) {
                ...
            } else {
                ...
            }
        }
    }

This bundle is inspired by the libraries here: http://user-agent-string.info/download, and uses the XML also from there, so keep your's updated!

You can specify your updated version in the config.yml

andres_montanez_user_agent_string:
    source: "%kernel.root_dir%/Resources/uas_20140211-01.xml"
    robots: true

By default, the Robots section of the file is NOT parsed nor used. If you want to know if a user agent is a bot, you have to enable it yourself. This bundle is focused on speed for the real users, not the bots.