Show
Ignore:
Timestamp:
01/19/08 16:58:06 (12 months ago)
Author:
david
Message:

Deprecated directive "core.use_routing" in favor of a routing config parameter ("enabled"), closes #683

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/routing/AgaviSoapRouting.class.php

    r2259 r2284  
    3131{ 
    3232  /** 
     33   * Initialize the routing instance. 
     34   * 
     35   * @param      AgaviContext A Context instance. 
     36   * @param      array        An array of initialization parameters. 
     37   * 
     38   * @author     David Zülke <dz@bitxtender.com> 
     39   * @since      0.11.0 
     40   */ 
     41  public function initialize(AgaviContext $context, array $parameters = array()) 
     42  { 
     43    // must always be on 
     44    unset($parameters['enabled']); 
     45     
     46    parent::initialize($context, $parameters); 
     47  } 
     48   
     49  /** 
    3350   * Returns the local filesystem path to the WSDL file built from routing.xml. 
    3451   *