commerce_pricelist_feeds_example.module in Commerce Pricelist 7
Code for the commerce_pricelist_feeds_example.
File
commerce_pricelist_feeds_example/commerce_pricelist_feeds_example.moduleView source
<?php
/**
* @file
* Code for the commerce_pricelist_feeds_example.
*/
/**
* Implements hook_ctools_plugin_api().
*/
function commerce_pricelist_feeds_example_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "feeds" && $api == "feeds_importer_default") {
return array(
"version" => "1",
);
}
}
Functions
Name | Description |
---|---|
commerce_pricelist_feeds_example_ctools_plugin_api | Implements hook_ctools_plugin_api(). |