function ctools_get_export_ui

Helper function to include CTools plugins and get an export-ui exportable.

Parameters

$plugin_name: The plugin that should be loaded.

8 calls to ctools_get_export_ui()
ctools_cache_export_ui_cache_get in plugins/cache/export_ui.inc
ctools_cache_export_ui_cache_set in plugins/cache/export_ui.inc
ctools_export_ui_ctools_access_get in ./ctools.module
Callback for access control ajax form on behalf of export ui.
ctools_export_ui_ctools_access_set in ./ctools.module
Callback for access control ajax form on behalf of export ui.
ctools_export_ui_get_handler in includes/export-ui.inc
Get the class to handle creating a list of exportable items.

... See full list

File

includes/export-ui.inc, line 433

Code

function ctools_get_export_ui($plugin_name) {
    ctools_include('plugins');
    return ctools_get_plugins('ctools', 'export_ui', $plugin_name);
}