ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
tmpDirectoyIterator Class Reference
+ Inheritance diagram for tmpDirectoyIterator:
+ Collaboration diagram for tmpDirectoyIterator:

Public Member Functions

 current ()
 
 valid ()
 
 rewind ()
 

Detailed Description

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

Member Function Documentation

◆ current()

tmpDirectoyIterator::current ( )

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

2329 {
2330 return parent::getFileName();
2331 }

◆ rewind()

tmpDirectoyIterator::rewind ( )

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

2352 {
2353 parent::rewind();
2354 }

◆ valid()

tmpDirectoyIterator::valid ( )

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

2334 {
2335 if(!parent::valid())
2336 {
2337 return false;
2338 }
2339 if($this->isFile() and substr(parent::getFileName(),-4) == '.xml')
2340 {
2341 return false;
2342 }
2343 if($this->isFile() and substr(parent::getFileName(),-8) != '_inserts')
2344 {
2345 return true;
2346 }
2347 parent::next();
2348 return $this->valid();
2349 }

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: