Page 1 of 1

RecursiveFilterIterator Unknown?

PostPosted: March 31st, 2013, 3:25 pm
by dp22193
Found another issue with the Gantry WP plugin not related to the previous post. When I try to access the admin area, I get the following compile error on the web page:

CompileError: The class 'RokMenuIdFilter' is incomplete - its base class or interface is unknown.

Two questions:

How come this wasn't reported in the precompile I did?

When I look at that code, I see that it extends RecursiveFilterIterator which, according to the PHP documentation, is supported in PHP 5.1.0+. Is there another assembly I need to include for this class?

Thanks,

David Perry

Re: RecursiveFilterIterator Unknown?

PostPosted: March 31st, 2013, 3:36 pm
by Jakub Misek
Precompilation compiles as much as it can without running the program. Some pieces of code must be resolved in runtime.

RecursiveFilterIterator seams not to be implemented yet in Phalanger.

Thanks,

Re: RecursiveFilterIterator Unknown?

PostPosted: April 1st, 2013, 2:04 pm
by dp22193
Ok. Thanks again Jakub!