You are here

public function Context::getValue in Forena Reports 8

Same name and namespace in other branches
  1. 7.5 src/Context/Context.php \Drupal\forena\Context\Context::getValue()
1 call to Context::getValue()
Context::__get in src/Context/Context.php

File

src/Context/Context.php, line 17

Class

Context

Namespace

Drupal\forena\Context

Code

public function getValue($key) {
  $value = @$this->values[$key];
  return $value;
}