class FeedsNodeExportParser in Node export 7.3
Parses a given file as a node export file.
Hierarchy
- class \FeedsNodeExportParser extends \FeedsParser
Expanded class hierarchy of FeedsNodeExportParser
2 string references to 'FeedsNodeExportParser'
- node_export_feeds_feeds_importer_default in modules/
node_export_feeds/ node_export_feeds.module - Implementation of hook_feeds_importer_default().
- node_export_feeds_feeds_plugins in modules/
node_export_feeds/ node_export_feeds.module - Implementation of hook_feeds_plugins().
File
- modules/
node_export_feeds/ FeedsNodeExportParser.inc, line 11 - Class definition of FeedsNodeExportParser.
View source
class FeedsNodeExportParser extends FeedsParser {
public $format = NULL;
/**
* Implements FeedsParser::parse().
*/
public function parse(FeedsSource $source, FeedsFetcherResult $fetcher_result) {
if (!$source->importer->processor instanceof FeedsNodeExportProcessor) {
drupal_set_message(t('Node export parser must be used with Node export processor. No nodes imported.'), 'error');
return new FeedsParserResult(array());
}
// Get the node export code.
$code_string = $fetcher_result
->getRaw();
// @todo: Do we need this stuff?
//$source_config = $source->getConfigFor($this);
//$state = $source->state(FEEDS_PARSE);
// Execute node_export_import() but don't have it save the nodes.
$result = node_export_import($code_string, 't', FALSE);
// Handle failure.
if (!$result['success']) {
foreach ($result['output'] as $error) {
// @todo: Is this what we should do with output messages?
drupal_set_message($error, 'error');
}
// @todo: Is this the right thing to return for a failure?
return new FeedsParserResult(array());
}
foreach ($result['output'] as $status) {
// @todo: Is this what we should do with output messages?
drupal_set_message($status);
}
// Feeds needs the nodes to be arrays.
// @todo: Should we try to get node_export_import() to return arrays in the
// first place? Or perhaps have the processor accept objects?
foreach ($result['nodes'] as $node) {
$items[] = (array) $node;
}
// Store the format that was used.
$this->format = $result['format'];
/*
// Node export doesn't support batchy stuffs atm.
// Determine section to parse, parse.
$start = $state->pointer ? $state->pointer : $parser->lastLinePos();
$limit = $source->importer->getLimit();
$rows = $this->parseItems($parser, $iterator, $start, $limit);
// Report progress.
$state->total = filesize($fetcher_result->getFilePath());
$state->pointer = $parser->lastLinePos();
$progress = $parser->lastLinePos() ? $parser->lastLinePos() : $state->total;
$state->progress($state->total, $progress);
*/
// Create a result object and return it.
return new FeedsParserResult($items);
}
/**
* Override parent::getMappingSources().
*/
public function getMappingSources() {
return FALSE;
}
/**
* Override parent::getSourceElement() to use only lower keys.
*/
public function getSourceElement(FeedsSource $source, FeedsParserResult $result, $element_key) {
return parent::getSourceElement($source, $result, drupal_strtolower($element_key));
}
/**
* Define defaults.
*/
public function sourceDefaults() {
return array();
}
/**
* Source form.
*
* Show mapping configuration as a guidance for import form users.
*/
public function sourceForm($source_config) {
$form = array();
return $form;
}
/**
* Define default configuration.
*/
public function configDefaults() {
return array();
}
/**
* Build configuration form.
*/
public function configForm(&$form_state) {
$form = array();
$form['info'] = array(
'#prefix' => '<p>',
'#markup' => t('This parser uses settings from <a href="!config">node export</a>.', array(
'!config' => url('admin/config/content/node_export'),
)),
'#suffix' => '</p>',
);
return $form;
}
/**
*
*/
public function getTemplate() {
return;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FeedsNodeExportParser:: |
public | property | ||
FeedsNodeExportParser:: |
public | function | Define default configuration. | |
FeedsNodeExportParser:: |
public | function | Build configuration form. | |
FeedsNodeExportParser:: |
public | function | Override parent::getMappingSources(). | |
FeedsNodeExportParser:: |
public | function | Override parent::getSourceElement() to use only lower keys. | |
FeedsNodeExportParser:: |
public | function | ||
FeedsNodeExportParser:: |
public | function | Implements FeedsParser::parse(). | |
FeedsNodeExportParser:: |
public | function | Define defaults. | |
FeedsNodeExportParser:: |
public | function | Source form. |