You are here

public function AfterParseBase::applies in Feeds 8.3

Returns if parsing should apply.

Parameters

\Drupal\feeds\Event\ParseEvent $event: The parse event.

Return value

bool True, if altering should continue. False otherwise.

1 call to AfterParseBase::applies()
AfterParseBase::afterParse in src/EventSubscriber/AfterParseBase.php
Acts on parser result.

File

src/EventSubscriber/AfterParseBase.php, line 67

Class

AfterParseBase
A base class for manipulating parser results.

Namespace

Drupal\feeds\EventSubscriber

Code

public function applies(ParseEvent $event) {
  return TRUE;
}