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