You are here

function RocketChatGroupEntity::getFields in Rocket.Chat 8.2

Gets an array of all field item lists.

Parameters

bool $include_computed: If set to TRUE, computed fields are included. Defaults to TRUE.

Return value

\Drupal\Core\Field\FieldItemListInterface[] An array of field item lists implementing, keyed by field name.

Overrides ContentEntityBase::getFields

File

modules/rocket_chat_group/src/Entity/RocketChatGroupEntity.php, line 72

Class

RocketChatGroupEntity

Namespace

Drupal\rocket_chat_group\Entity

Code

function getFields($include_computed = TRUE) {
  return parent::getFields($include_computed);

  // TODO: Change the autogenerated stub
}