Example #1
0
 /**
  * @inheritDoc
  */
 public function getValue(ResultRow $values, $field = NULL)
 {
     $value = NULL;
     $cat_id = parent::getValue($values, $field);
     if ($cat_id) {
         $value = $this->entityStorage->load($cat_id)->getName();
     }
     return $value;
 }