PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
symfony
/
finder
/
Iterator
<?php namespace MailPoetVendor\Symfony\Component\Finder\Iterator; if (!defined('ABSPATH')) exit; use MailPoetVendor\Symfony\Component\Finder\Comparator\DateComparator; class DateRangeFilterIterator extends \FilterIterator { private $comparators = []; public function __construct(\Iterator $iterator, array $comparators) { $this->comparators = $comparators; parent::__construct($iterator); } #[\ReturnTypeWillChange] public function accept() { $fileinfo = $this->current(); if (!\file_exists($fileinfo->getPathname())) { return \false; } $filedate = $fileinfo->getMTime(); foreach ($this->comparators as $compare) { if (!$compare->test($filedate)) { return \false; } } return \true; } }
[-] ExcludeDirectoryFilterIterator.php
[edit]
[-] LazyIterator.php
[edit]
[-] SizeRangeFilterIterator.php
[edit]
[-] SortableIterator.php
[edit]
[-] index.php
[edit]
[+]
..
[-] FilenameFilterIterator.php
[edit]
[-] PathFilterIterator.php
[edit]
[-] CustomFilterIterator.php
[edit]
[-] MultiplePcreFilterIterator.php
[edit]
[-] FileTypeFilterIterator.php
[edit]
[-] DateRangeFilterIterator.php
[edit]
[-] DepthRangeFilterIterator.php
[edit]
[-] FilecontentFilterIterator.php
[edit]
[-] RecursiveDirectoryIterator.php
[edit]