-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Alessandro_78 wrote: > Hello, > > I'm posting here as I cannot find an answer anywhere. > > I'm trying to use ZendApplication to manage a new ZF application and I have > created a default module and an archive module. The archive module has also > its own Bootstrap.php (which classname is Archive_Bootstrap) but the strange > thing that I cannot understand is why the archive bootstrap is always loaded > even if I'm using the default module. Why this behaviour? Am I missing > something important? > > Thanks in advance for your help! > > Alessandro
This is expected behaviour. Bootstrapping is used to initialize the application and is performed before routing-- your archive module may even use its bootstrap to add routing rules. So, at this point it is not even known which module will be used. - -- Brenton Alker PHP Developer - Brisbane, Australia http://blog.tekerson.com/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkoxEE4ACgkQ7bkAtAithuvcbACfXIAoobotbpJkWCb8Bb3J3kU0 TvIAoNSTOgSqcwZiyqapt66q3NhG+F0J =K/sD -----END PGP SIGNATURE-----
