You are here

function panels_argument_context_id in Panels 5.2

Determine a unique context ID for an argument

2 calls to panels_argument_context_id()
panels_argument_get_display in includes/plugins.inc
Choose a display based upon arguments and loaded contexts.
panels_argument_load_contexts in includes/plugins.inc
Load the contexts for a given panel.

File

includes/plugins.inc, line 780
plugins.inc

Code

function panels_argument_context_id($argument) {
  return "argument_{$argument['name']}_{$argument['id']}";
}