function template_preprocess_log_content_add_list in Log entity 8
Prepares variables for a custom entity type creation list templates.
Default template: log-content-add-list.html.twig.
Parameters
array $variables: An associative array containing:
- content: An array of log-types.
See also
block_content_add_page()
File
- ./
log.page.inc, line 45 - Contains log.page.inc.
Code
function template_preprocess_log_content_add_list(&$variables) {
$variables['types'] = array();
$query = \Drupal::request()->query
->all();
foreach ($variables['content'] as $type) {
$variables['types'][$type
->id()] = array(
'link' => Link::fromTextAndUrl($type
->label(), new Url('entity.log.add_form', array(
'log_type' => $type
->id(),
), array(
'query' => $query,
))),
'description' => array(
'#markup' => $type
->label(),
),
'title' => $type
->label(),
'localized_options' => array(
'query' => $query,
),
);
}
}