Skip to content

pokap/EkinoDrupalBundle

 
 

Repository files navigation

Drupal Bundle by Ekino

Requires at least Drush 5.0 for compatibility with Symfony console.

The bundle tries to deeply integrate Symfony2 with Drupal and Drupal with Symfony2. Of course this is done without altering the Drupal's core.

When this bundle is activated, the Symfony2 console will have the Drupal libraries autoloaded. So, it makes possible the use of Drupal libraries from your Symfony2 command.

Install

Download the symfony2 sandbox and the drupal code

Install the files to have the following structure

Symfony Sandbox Root
  - app
  - vendor
  - src
  - web ( drupal source code)

The web directory must be the document root and contains the drupal source code.

Update the index.php file

This file "share" the container with Drupal so it is possible to reuse Symfony2's services from within Drupal. The initialization process is always handled by Symfony2.

<?php
require_once __DIR__.'/../app/bootstrap.php.cache';
require_once __DIR__.'/../app/AppKernel.php';
//require_once __DIR__.'/../app/bootstrap_cache.php.cache';
//require_once __DIR__.'/../app/AppCache.php';

use Symfony\Component\HttpFoundation\Request;

$kernel = new AppKernel('dev', true); //
$kernel->loadClassCache();
$kernel->boot();

// make the symfony container available from drupal file
global $container;

$container = $kernel->getContainer();

$kernel->handle(Request::createFromGlobals())->send();

Install the related drupal module

The module can be downloaded from the following url : https://github.com/ekino/ekino_drupal_symfony2

Configuration

Edit the symfony config.yml file and add the following lines :

framework:
    # ... configuration options
    session:
        # ... configuration options
        auto_start:     false
        storage_id:     ekino.drupal.session

ekino_drupal:
    root:          %kernel.root_dir%/../web
    logger:        ekino.drupal.logger.watchdog
    strategy_id:   ekino.drupal.delivery_strategy.symfony
    # attach a security token to the following provider keys
    provider_keys: [main, admin]

# declare 2 required mapping definition used by drupal
doctrine:
    dbal:
        default_connection: default
        connections:
            default:
                driver:   %database_driver%
                dbname:   %database_name%
                user:     %database_user%
                host:     %database_host%
                password: %database_password%

                mapping_types:
                    longblob: object
                    blob: object

The bundle comes with 2 delivery strategies :

  • ekino.drupal.delivery_strategy.symfony : Drupal returns the response only if the page is not 404
  • ekino.drupal.delivery_strategy.drupal : Drupal always returns the response, even if the page is 404

Update Queries

UPDATE users SET `emailCanonical` = `mail`, `usernameCanonical` = `name`, `roles` = 'b:0;';

Usage

Symfony components can be used from within drupal :

<?php
function drupal_foo_function() {
    $result = symfony_service('reusage_service')->foo();

    // do some stuff with $result
}

Limitations

  • It is not possible to use Symfony native class to manage session as drupal initializes its own session handler and there is no way to change this.
  • requests must be served through the index.php as it is the default value in the .htaccess file and there is no way to change the default script in drupal

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%