You are here

function theme_xmlsitemap_content_settings_table in XML sitemap 2.x

Same name and namespace in other branches
  1. 8 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 1524
xmlsitemap XML sitemap

Code

function theme_xmlsitemap_content_settings_table(array $variables) {
  return '<h4>' . $variables['build']['#title'] . '</h4>' . \Drupal::service('renderer')
    ->render($variables['build']);
}