You are here

function context_admin_menu_context_clone in Contextual Administration 6

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

File

plugins/task_handlers/menu_context.inc, line 386

Code

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