public function SmartDateFormatListBuilder::buildRow in Smart Date 3.2.x
Same name and namespace in other branches
- 8.2 src/Entity/SmartDateFormatListBuilder.php \Drupal\smart_date\Entity\SmartDateFormatListBuilder::buildRow()
- 8 src/Entity/SmartDateFormatListBuilder.php \Drupal\smart_date\Entity\SmartDateFormatListBuilder::buildRow()
- 3.x src/Entity/SmartDateFormatListBuilder.php \Drupal\smart_date\Entity\SmartDateFormatListBuilder::buildRow()
- 3.0.x src/Entity/SmartDateFormatListBuilder.php \Drupal\smart_date\Entity\SmartDateFormatListBuilder::buildRow()
- 3.1.x src/Entity/SmartDateFormatListBuilder.php \Drupal\smart_date\Entity\SmartDateFormatListBuilder::buildRow()
- 3.3.x src/Entity/SmartDateFormatListBuilder.php \Drupal\smart_date\Entity\SmartDateFormatListBuilder::buildRow()
- 3.4.x src/Entity/SmartDateFormatListBuilder.php \Drupal\smart_date\Entity\SmartDateFormatListBuilder::buildRow()
Builds a row for an entity in the entity listing.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list.
Return value
array A render array structure of fields for this entity.
Overrides EntityListBuilder::buildRow
See also
\Drupal\Core\Entity\EntityListBuilder::render()
File
- src/
Entity/ SmartDateFormatListBuilder.php, line 31
Class
- SmartDateFormatListBuilder
- Defines a class to build a listing of Smart date formats.
Namespace
Drupal\smart_date\EntityCode
public function buildRow(EntityInterface $entity) {
/* @var $entity \Drupal\smart_date\Entity\SmartDateFormat */
$row['query'] = Link::createFromRoute($entity
->label(), 'entity.smart_date_format.edit_form', [
'smart_date_format' => $entity
->id(),
]);
// Show a preview and list the primary PHP codes.
$formatted = SmartDateTrait::formatSmartDate(time(), time() + 3600, $entity
->getOptions(), NULL, 'string');
$row['preview']['data'] = $formatted;
$row['date_format']['data'] = $entity
->get('date_format');
$row['time_format']['data'] = $entity
->get('time_format');
return $row + parent::buildRow($entity);
}