2017 © Pedro Peláez
 

symfony-bundle vb-bundle

Integrates vBulletin with Symfony applications

image

aureka/vb-bundle

Integrates vBulletin with Symfony applications

  • Tuesday, May 27, 2014
  • by carlescliment
  • Repository
  • 6 Watchers
  • 0 Stars
  • 67 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

AurekaVBulletinBundle

Build Status, (*1)

Integrates vbulletin with a Symfony application, providing a Single Sign In. Any user logging into a Symfony application will automatically log into vBulletin., (*2)

Installation

Add the following line to your composer.json:, (*3)

{
    "require": {
        "aureka/vb-bundle" : "dev-master"
    }
}

Execute composer update., (*4)

Add the following line to your AppKernel.php., (*5)

public function registerBundles()
{
    $bundles = array(
        // your other bundles
        new Aureka\VBBundle\AurekaVBBundle(),
    );
}

Configuration

You must add some vBulletin settings in your config.yml., (*6)

aureka_vb:
    enabled: true #optional, enabled by default
    license: 'YOURLICENSEGOESHERE' # can be found in functions.php
    default_user_group: 2 #optional
    ip_check: 1 #optional
    cookie_prefix: 'bb_' #optional
    database:
        driver: 'pdo_mysql'
        host: 'localhost'
        name: 'vb_database_name'
        port: null
        user: 'vb_database_user'
        password: 'vb_database_password'
        table_prefix: 'vb3_' #optional

Automatic logout

In order to logout users from vbulletin, add the following lines to your security.yml:, (*7)

security:
    # ...
    firewalls:
        main:
            # ...
            logout:
                handlers: [aureka_vb.logout_handler]

The Versions

27/05 2014

dev-master

9999999-dev

Integrates vBulletin with Symfony applications

  Sources   Download

Apache2

The Requires

 

The Development Requires

29/04 2014

0.0.2

0.0.2.0

Integrates vBulletin with Symfony applications

  Sources   Download

Apache2

The Requires

 

The Development Requires

17/04 2014

0.0.1

0.0.1.0

Integrates vBulletin with Symfony applications

  Sources   Download

Apache2

The Requires

 

The Development Requires