feeds_ex.module in Feeds extensible parsers 8
Same filename and directory in other branches
A Feeds framework used to create extensible parsers.
File
feeds_ex.moduleView source
<?php
/**
* @file
* A Feeds framework used to create extensible parsers.
*/
// Ludwig module integration.
if (\Drupal::hasService('ludwig.require_once')) {
$ludwig_require_once = \Drupal::service('ludwig.require_once');
$ludwig_require_once
->requireOnce('mtdowling/jmespath.php', 'src/JmesPath.php', dirname(__FILE__));
$ludwig_require_once
->requireOnce('querypath/QueryPath', 'src/qp_functions.php', dirname(__FILE__));
}
/**
* Implements hook_theme().
*/
function feeds_ex_theme() {
return [
'feeds_ex_configuration_table' => [
'file' => 'feeds_ex.theme.inc',
'render element' => 'element',
],
];
}
Functions
Name | Description |
---|---|
feeds_ex_theme | Implements hook_theme(). |