Hi

I can not get around it, I need to change the sfWidget.class.php.
Extending it is too much trouble because its so high in the extended
tree.

Is there a way to have symfony see my sfWidget.class.php instead of
the one in the core classes (which I do not want to touch)?
Autoloading seems to only allow one home for the project library
classes.

Following the chapter on mastering  configuation I tried this which
did not work. Where I try to load my class first then the symfony
libraries (parent::initialize)

 class fooConfiguration extends sfApplicationConfiguration
{
  public function configure()
  {
  }

  public function initialize()
  {
    // insert your own autoloading callables here
    spl_autoload_register(array('myUtils', 'autoload'));


    parent::initialize();
  }
}

Any tips, ideas would be greatly appreciated.
Thanks
~

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to