Skip to content

Instantly share code, notes, and snippets.

@woutersf
Created January 16, 2017 15:55
Show Gist options
  • Save woutersf/a85168b75a00badea29c409d28ba612a to your computer and use it in GitHub Desktop.
Save woutersf/a85168b75a00badea29c409d28ba612a to your computer and use it in GitHub Desktop.
drupal8 nested render array in table
<?php
$header = array();
foreach ($programs->list as $program) {
$rows[] = array(
'img' => array(
'data' => array(
'#theme' => 'image',
'#attributes' => array(
'src' => $program->images[0]->url, //Images come from an external resources, otherwise use #uri on the level of #attributes
)
),
),
'other_field' => $program->name,
'programma' => 'more data',
);
}
return [
'#type' => 'table',
'#header' => $header,
'#rows' => $rows,
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment