t('Custom Font'); $header['id'] = $this->t('Machine name'); $header['font_family'] = $this->t('Font Family'); return $header + parent::buildHeader(); } /** * {@inheritdoc} */ public function buildRow(EntityInterface $entity) { $row['label'] = $entity->label(); $row['id'] = $entity->id(); $row['font_family'] = $entity->font_family; return $row + parent::buildRow($entity); } }