Re: [PHP] Re: PreReq Index

2008-11-01 Thread Craige Leeder
Richard Lynch wrote: So set up include_path to have all those directories and call it done. The problem I see with with this is what if there is are two files of two different types (thus in different directories) which have the same file name? Forgive me, I'm just trying to shoot out sce

Re: [PHP] Re: PreReq Index

2008-10-31 Thread Craige Leeder
No can do. The files are stored in separate directories based on their usage/type. They're not all just in one directory. Regards, - Craige Jochem Maas wrote: try autoload()ing. what your trying to do is reinvent a wheel ... and chances are yours will be less round. -- PHP General Maili

Re: [PHP] Re: PreReq Index

2008-10-31 Thread Jochem Maas
Craige Leeder schreef: > I forgot to mention, the calls to setPreReq() would occur in each file > in place of an include() to get prerequisite components. IE: try autoload()ing. what your trying to do is reinvent a wheel ... and chances are yours will be less round. > > html.php : > Ember::setPr

[PHP] Re: PreReq Index

2008-10-30 Thread Craige Leeder
I forgot to mention, the calls to setPreReq() would occur in each file in place of an include() to get prerequisite components. IE: html.php : Ember::setPrereq( array('iOutput' => Ember::mciInterface) ); class html implements iOutput { ... } iOutput.php: Ember::setPrereq( array('iIO' => Ember