You are here

feeds_ex.module in Feeds extensible parsers 8

Same filename and directory in other branches
  1. 7.2 feeds_ex.module
  2. 7 feeds_ex.module

A Feeds framework used to create extensible parsers.

File

feeds_ex.module
View 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

Namesort descending Description
feeds_ex_theme Implements hook_theme().