function ctools_export_ui_plugin_base_path
Get the base path from a plugin.
Parameters
$plugin: The plugin.
Return value
The menu path to the plugin's list.
8 calls to ctools_export_ui_plugin_base_path()
- ctools_export_ui::clone_page in plugins/
export_ui/ ctools_export_ui.class.php - Main entry point to clone an item.
- ctools_export_ui::hook_menu in plugins/
export_ui/ ctools_export_ui.class.php - hook_menu() entry point.
- ctools_export_ui::list_form_submit in plugins/
export_ui/ ctools_export_ui.class.php - Submit the filter/sort form.
- ctools_export_ui::redirect in plugins/
export_ui/ ctools_export_ui.class.php - Perform a drupal_goto() to the location provided by the plugin for the operation.
- ctools_export_ui::set_item_state in plugins/
export_ui/ ctools_export_ui.class.php - Set an item's state to enabled or disabled and output to user.
File
-
includes/
export-ui.inc, line 402
Code
function ctools_export_ui_plugin_base_path($plugin) {
return $plugin['menu']['menu prefix'] . '/' . $plugin['menu']['menu item'];
}