You are here

function context_admin_menu_context_export in Contextual Administration 6

Same name and namespace in other branches
  1. 7 plugins/task_handlers/menu_context.inc \context_admin_menu_context_export()
1 string reference to 'context_admin_menu_context_export'
menu_context.inc in plugins/task_handlers/menu_context.inc

File

plugins/task_handlers/menu_context.inc, line 393

Code

function context_admin_menu_context_export(&$handler, $indent) {
  $callback = $handler->conf['context_admin_options'];
  if ($callback) {
    context_admin_plugin_invoke($callback, 'export', array(
      &$handler,
      &$indent,
    ));
  }
}