FeedsExTestUi.inc in Feeds extensible parsers 7.2
Same filename and directory in other branches
Contains FeedsExTestUi.
File
tests/FeedsExTestUi.incView source
<?php
/**
* @file
* Contains FeedsExTestUi.
*/
/**
* A minimal implementation of a parser for UI testing.
*/
class FeedsExTestUi extends FeedsExBase {
/**
* {@inheritdoc}
*/
protected function executeContext(FeedsSource $source, FeedsFetcherResult $fetcher_result) {
return array();
}
/**
* {@inheritdoc}
*/
protected function executeSourceExpression($machine_name, $expression, $row) {
}
/**
* {@inheritdoc}
*/
protected function validateExpression(&$expression) {
}
/**
* {@inheritdoc}
*/
protected function getErrors() {
return array();
}
}
Classes
Name | Description |
---|---|
FeedsExTestUi | A minimal implementation of a parser for UI testing. |