You are here

function panels_context::panels_context in Panels 5.2

Same name and namespace in other branches
  1. 6.2 includes/plugins.inc \panels_context::panels_context()

File

includes/plugins.inc, line 26
plugins.inc

Class

panels_context
Forms the basis for describing and storing a context that a display might be running in.

Code

function panels_context($type = 'none', $data = NULL) {
  $this->type = $type;
  $this->data = $data;
  $this->title = t('Unknown context');
}