Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.
/ BrowscapBundle Public archive

Symfony2 Bundle to access the browscap information

Notifications You must be signed in to change notification settings

browscap/BrowscapBundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6071708 · Oct 13, 2017

History

39 Commits
Nov 30, 2013
Feb 5, 2014
Sep 2, 2014
Mar 9, 2014
Sep 2, 2014
Sep 28, 2012
Mar 10, 2014
Jul 30, 2015
Jan 17, 2013
Jan 17, 2013
Oct 13, 2017
Sep 19, 2016
Mar 9, 2014
Mar 9, 2014

Repository files navigation

Browscap/BrowscapBundle

Build Status Scrutinizer Quality Score Code Coverage

This is a service for you that is similar to the php function get_browser(). It uses https://github.com/GaretJax/phpbrowscap project.

Installation

php composer.phar require browscap/browscap-bundle:1.0.*

This will install the current version which is beta and is the master branch. I don't want to say it's stable yet until I have some more tests and real world usage under the belt, but should be good enough to use in a production site.

In your app/AppKernel.php file

public function registerBundles()
{
    ...
    $bundles = array(
        ...
        new Browscap\BrowscapBundle\BrowscapBundle(),
        ...
    );
    ...
}

Configuration

You can see the configuration values and information by running php app/console config:dump-reference BrowscapBundle

browscap:
    remote_ini_url:       http://tempdownloads.browserscap.com/stream.php?BrowsCapINI
    remote_ver_url:       http://tempdownloads.browserscap.com/versions/version-date.php
    cache_dir:            null # If null, use your application cache directory
    timeout:              5
    update_interval:      432000
    error_interval:       7200
    do_auto_update:       true
    update_method:        'cURL' # Supported methods: 'URL-wrapper','socket','cURL' and 'local'.
    local_file:           null # Only if used
    cache_filename:       'cache.php'
    ini_filename:         'browscap.ini'
    lowercase:            false # You need to rebuild the cache if this option is changed
    silent:               false

Usage

In your controller, you will just need to get the browser information via the dependency injection container.

// @var $browscap \Browscap\BrowscapBundle\Browscap
$browscap = $this->container->get('browscap');
$browser = $browscap->getBrowser();

In twig templates, you can call the get_browser function :

{% set browser = get_browser() %}

In the future there might be some more functions.

About

Symfony2 Bundle to access the browscap information

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages