ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
tmpDirectoyIterator Class Reference
+ Inheritance diagram for tmpDirectoyIterator:
+ Collaboration diagram for tmpDirectoyIterator:

Public Member Functions

 current ()
 
 valid ()
 
 rewind ()
 

Detailed Description

Definition at line 2357 of file class.ilSetup.php.

Member Function Documentation

◆ current()

tmpDirectoyIterator::current ( )

Definition at line 2359 of file class.ilSetup.php.

2360 {
2361 return parent::getFileName();
2362 }

◆ rewind()

tmpDirectoyIterator::rewind ( )

Definition at line 2382 of file class.ilSetup.php.

2383 {
2384 parent::rewind();
2385 }

◆ valid()

tmpDirectoyIterator::valid ( )

Definition at line 2364 of file class.ilSetup.php.

2365 {
2366 if(!parent::valid())
2367 {
2368 return false;
2369 }
2370 if($this->isFile() and substr(parent::getFileName(),-4) == '.xml')
2371 {
2372 return false;
2373 }
2374 if($this->isFile() and substr(parent::getFileName(),-8) != '_inserts')
2375 {
2376 return true;
2377 }
2378 parent::next();
2379 return $this->valid();
2380 }

References valid().

Referenced by valid().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

The documentation for this class was generated from the following file: