Login   Register  
PHP Classes
elePHPant
Icontem

File: application/bootstrap.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of solomongaby  >  GSD_Controller_Plugin_Language  >  application/bootstrap.php  >  Download  
File: application/bootstrap.php
Role: Configuration script
Content type: text/plain
Description: the lines you need to add bootstrap file to configure the plugin
Class: GSD_Controller_Plugin_Language
Handle multi-language URLs with Zend Framework
Author: By
Last change: fixing some typo
Date: 2008-12-30 00:58
Size: 415 bytes
 

Contents

Class file image Download
// Register the plugin
Zend_Controller_Front::getInstance()->registerPlugin(new GSD_Controller_Plugin_Language());

// adding the URL route
$route = new Zend_Controller_Router_Route(
            ':language/:controller/:action/*',
                array(
                    'language'   => 'en',
                    'module'     => 'default',
                    'controller' => 'index',
                    'action'     => 'index'
                )
            );
        $router->addRoute('lang_default', $route);