Added Case Provision entity for recording caseworker involvement with cases

This commit is contained in:
2021-11-11 08:39:18 +00:00
parent 6dca2e98e9
commit f601890ad0
34 changed files with 2179 additions and 3 deletions

View File

@ -0,0 +1,39 @@
<?php
namespace Drupal\opencase_cases;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;
use Drupal\Core\Link;
/**
* Defines a class to build a listing of Case Provision entities.
*
* @ingroup opencase_cases
*/
class OCCaseProvisionListBuilder extends EntityListBuilder {
/**
* {@inheritdoc}
*/
public function buildHeader() {
$header['id'] = $this->t('Case Provision ID');
$header['name'] = $this->t('Name');
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity) {
/* @var \Drupal\opencase_cases\Entity\OCCaseProvision $entity */
$row['id'] = $entity->id();
$row['name'] = Link::createFromRoute(
$entity->label(),
'entity.oc_case_provision.edit_form',
['oc_case_provision' => $entity->id()]
);
return $row + parent::buildRow($entity);
}
}