Re: [Components] HowTo incoperate ManyToMany Related data in ezcPersistentObject, a proposal.

2008-11-15 Thread Thomas Koch
I've had exactly the same problem, filled it in issue http://issues.ez.no/IssueView.php?Id=13170&activeItem=2 and had a similiar idea. :-) Best regards, Thomas Koch Am Saturday 15 November 2008 11:15:55 schrieb Benjamin Eberlei: > There are cases when in many to many relationships you need addi

Re: [Components] [svn-components] 9390 - in /trunk/Base: src/file.php tests/file_copy_recursive_test.php

2008-11-15 Thread Sebastian Bergmann
Kore Nordmann wrote: > // Recurse > $dh = opendir( $source ); > -while( $file = readdir( $dh ) ) > +while ( ( $file = readdir( $dh ) ) !== false ) Why are we not using a RecursiveDirectoryIterator here? opendir() and readdir() are so PHP 4. -- Sebastian Bergma

[Components] HowTo incoperate ManyToMany Related data in ezcPersistentObject, a proposal.

2008-11-15 Thread Benjamin Eberlei
There are cases when in many to many relationships you need additional data that is only relevant, when in the context of the m:n relation but in neither object context alone. Currently this is not possible in ezcComponents. I have looked at the ezcPersistentSession and relation related source c