cdm-dataportal/modules/cdm_dataportal/classes/RegistrationDtoComposeHandler.php @ 97fada02
1 |
<?php
|
---|---|
2 |
|
3 |
class RegistrationDTOComposeHandler extends ItemComposeHandler { |
4 |
|
5 |
public function getClassAttributes($item) { |
6 |
return $this->classAttributes(new TypedEntityReference("Registration", $item->uuid)); |
7 |
}
|
8 |
|
9 |
public function composeItem($item) { |
10 |
return compose_registration_dto_compact($item, 'item-style', 'div'); |
11 |
}
|
12 |
}
|