class JSONFIReader in Feed Import 7.3
JSON Reader class, used to read data from json files.
Hierarchy
- class \FeedImportConfigurable
- class \FeedImportReader
- class \FeedImportVectorReader
- class \JSONFIReader
- class \FeedImportVectorReader
- class \FeedImportReader
Expanded class hierarchy of JSONFIReader
1 string reference to 'JSONFIReader'
- feed_import_feed_import_reader_info in ./
feed_import.module - Implements hook_feed_import_reader_info().
File
- feed_import_base/
inc/ feed_import_readers.inc, line 632 - This file contains implementations of feed import readers.
View source
class JSONFIReader extends FeedImportVectorReader {
/**
* {@inheritdoc}
*/
public function init() {
// Set default params
$this->options += array(
'stream' => NULL,
'parent' => NULL,
'raw' => NULL,
'url' => NULL,
);
if ($this->options['url']) {
// Check for stream options.
if ($ctx = $this
->getStreamContext($this->options['stream'])) {
// Open the file using stream options.
$this->items = json_decode(file_get_contents($this->options['url'], FALSE, $ctx));
}
else {
// Open the file.
$this->items = json_decode(file_get_contents($this->options['url']));
}
}
elseif ($this->options['raw']) {
$this->items = json_decode($this->options['raw']);
}
if (!$this->items) {
return FALSE;
}
unset($this->options['raw']);
// Check for parent
if ($this->options['parent']) {
$this->options['parent'] = $this
->formatPath($this->options['parent']);
$this->items = $this
->map($this->items, $this->options['parent']);
}
return TRUE;
}
/**
* {@inheritdoc}
*/
public function get() {
return array_shift($this->items);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FeedImportConfigurable:: |
protected | property | ||
FeedImportConfigurable:: |
public static | function | Helper function to get lines of a string | |
FeedImportConfigurable:: |
public | function | Sets options for this instance | 4 |
FeedImportReader:: |
protected | property | ||
FeedImportReader:: |
public | function | Returns a stream context | |
FeedImportReader:: |
final public | function | Constructor of reader. Constructor is final but you'll have to implement init() to init your reader. | |
FeedImportReader:: |
public | function | Destructor. | 2 |
FeedImportVectorReader:: |
public | function |
Override this to preprocess your paths before they are used in map(). Overrides FeedImportReader:: |
|
FeedImportVectorReader:: |
public | function |
Returns a value mapped from obj by path. Overrides FeedImportReader:: |
|
FeedImportVectorReader:: |
public | function | Gets an element by path. | |
FeedImportVectorReader:: |
constant | |||
JSONFIReader:: |
public | function |
This method returns the next available item or NULL if there are no items
left. Overrides FeedImportReader:: |
|
JSONFIReader:: |
public | function |
Here you'll init your reader. Overrides FeedImportReader:: |