function ctools_get_export_ui in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 includes/export-ui.inc \ctools_get_export_ui()
Helper function to include CTools plugins and get an export-ui exportable.
Parameters
$plugin_name: The plugin that should be laoded.
8 calls to ctools_get_export_ui()
- ctools_export_ui_context_cache_get in ./
ctools.module - Cache callback on behalf of ctools_export_ui.
- ctools_export_ui_context_cache_set in ./
ctools.module - Cache callback on behalf of ctools_export_ui.
- 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.
File
- includes/
export-ui.inc, line 469 - Provide a tool for creating UIs for exportable objects.
Code
function ctools_get_export_ui($plugin_name) {
ctools_include('plugins');
return ctools_get_plugins('ctools', 'export_ui', $plugin_name);
}