function theme_xmlsitemap_content_settings_table in XML sitemap 8
Same name and namespace in other branches
- 2.x xmlsitemap.module \theme_xmlsitemap_content_settings_table()
Returns HTML for an administration settings table.
Parameters
array $variables: An associative array containing:
- build: A render element representing a table of bundle content language settings for a particular entity type.
Return value
string HTML content.
File
- ./
xmlsitemap.module, line 1564 - xmlsitemap XML sitemap
Code
function theme_xmlsitemap_content_settings_table(array $variables) {
return '<h4>' . $variables['build']['#title'] . '</h4>' . \Drupal::service('renderer')
->render($variables['build']);
}