You are here

function feeds_tamper_load_instance in Feeds Tamper 6

Same name and namespace in other branches
  1. 7 feeds_tamper.inc \feeds_tamper_load_instance()

Load a plugin instance by id.

Parameters

string $id: The id of the plugin instance.

Return value

stdClass A plugin instance object.

Related topics

7 calls to feeds_tamper_load_instance()
FeedsTamperUIWebTestCase::addTamperPlugin in feeds_tamper_ui/tests/feeds_tamper_ui.test
FeedsTamperUIWebTestCase::deleteTamperPlugin in feeds_tamper_ui/tests/feeds_tamper_ui.test
FeedsTamperWebTestHelper::disableTamperPlugin in tests/feeds_tamper.test
feeds_tamper_delete_instance in ./feeds_tamper.inc
Delete a single plugin instance.
feeds_tamper_plugin_instance_load in feeds_tamper_ui/feeds_tamper_ui.module
Menu loader callback for plugin instances.

... See full list

File

./feeds_tamper.inc, line 56
Version agnostic parts of feeds_tamper.module.

Code

function feeds_tamper_load_instance($id) {
  ctools_include('export');
  return ctools_export_crud_load('feeds_tamper', $id);
}