collapse custom group for embed data

This commit is contained in:
Marc Michalsky forumZFD 2020-10-29 16:26:54 +01:00
parent 6e07d97dba
commit e6790c914e
Signed by untrusted user who does not match committer: marc.koch
GPG key ID: 12406554CFB028B9

View file

@ -13,6 +13,7 @@ class CustomGroup {
private $extends; private $extends;
private $weight; private $weight;
private $extends_entity_column_value; private $extends_entity_column_value;
private $collapse_display;
private $results; private $results;
/** /**
@ -243,10 +244,10 @@ class CustomGroup {
} }
/** /**
* @return string * @return mixed
*/ */
public function getColumnValue(): string { public function getCollapseDisplay() {
return $this->column_value; return $this->collapse_display;
} }
/** /**