You are here

function path_breadcrumbs_ctools_context_create_context in Path Breadcrumbs 7.3

Create a context from manual configuration.

1 string reference to 'path_breadcrumbs_ctools_context_create_context'
path_breadcrumbs_site.inc in plugins/contexts/path_breadcrumbs_site.inc

File

plugins/contexts/path_breadcrumbs_site.inc, line 25

Code

function path_breadcrumbs_ctools_context_create_context($empty, $data = NULL, $conf = FALSE) {
  $context = new ctools_context('path_breadcrumbs_site');
  $context->plugin = 'path_breadcrumbs_site';
  $context->keyword = 'site';
  return $context;
}