You are here

public function MailhandlerFetcherResult::__construct in Mailhandler 7.2

Constructor.

Overrides FeedsFetcherResult::__construct

File

plugins/feeds/plugins/MailhandlerFetcher.class.php, line 18
Checks for new messages in a mailbox (IMAP, POP3, etc...).

Class

MailhandlerFetcherResult
Definition of the import batch object needed by MailhandlerFetcher.

Code

public function __construct($mailbox_name, $filter) {
  parent::__construct('');
  $this->mailbox_name = $mailbox_name;
  $this->filter = $filter;
}