You are here

function panels_argument_choose_display in Panels 6.2

Same name and namespace in other branches
  1. 5.2 includes/plugins.inc \panels_argument_choose_display()

Pick which display an argument wants to use

1 call to panels_argument_choose_display()
panels_argument_get_display in includes/plugins.inc
Choose a display based upon arguments and loaded contexts.

File

includes/plugins.inc, line 784
plugins.inc

Code

function panels_argument_choose_display($type, $conf, $context) {
  if ($function = panels_plugin_get_function('arguments', $type, 'choose display')) {
    return $function($conf, $context);
  }
}