diff --git a/core/includes/form.inc b/core/includes/form.inc index 5cd3bdbae..cd81bea 100644 --- a/core/includes/form.inc +++ b/core/includes/form.inc @@ -1606,7 +1606,7 @@ function form_process_container($element, &$form_state) { function theme_tableselect($variables) { $element = $variables['element']; $table = array( - '#theme' => 'table', + '#type' => 'table', ); $rows = array(); $header = $element['#header']; diff --git a/core/includes/tablesort.inc b/core/includes/tablesort.inc index 48a8658..9b037b5 100644 --- a/core/includes/tablesort.inc +++ b/core/includes/tablesort.inc @@ -9,7 +9,7 @@ * @file * Functions to aid in the creation of sortable tables. * - * All tables created when rendering a '#theme' => 'table' have the option of + * All tables created when rendering a '#type' => 'table' have the option of * having column headers that the user can click on to sort the table by that * column. */ @@ -33,7 +33,7 @@ function tablesort_init($header) { * @param $cell * The cell to format. * @param $header - * An array of column headers in the format described in '#theme' => 'table'. + * An array of column headers in the format described in '#type' => 'table'. * @param $ts * The current table sort context as returned from tablesort_init(). * @@ -77,7 +77,7 @@ function tablesort_header($cell, $header, $ts) { * @param $cell * The cell to format. * @param $header - * An array of column headers in the format described in '#theme' => 'table'. + * An array of column headers in the format described in '#type' => 'table'. * @param $ts * The current table sort context as returned from tablesort_init(). * @param $i @@ -113,7 +113,7 @@ function tablesort_get_query_parameters() { * Determines the current sort criterion. * * @param $headers - * An array of column headers in the format described in '#theme' => 'table'. + * An array of column headers in the format described in '#type' => 'table'. * * @return * An associative array describing the criterion, containing the keys: @@ -150,7 +150,7 @@ function tablesort_get_order($headers) { * Determines the current sort direction. * * @param $headers - * An array of column headers in the format described in '#theme' => 'table'. + * An array of column headers in the format described in '#type' => 'table'. * * @return * The current sort direction ("asc" or "desc"). diff --git a/core/lib/Drupal/Core/Entity/EntityListController.php b/core/lib/Drupal/Core/Entity/EntityListController.php index 0703f50..c6585be 100644 --- a/core/lib/Drupal/Core/Entity/EntityListController.php +++ b/core/lib/Drupal/Core/Entity/EntityListController.php @@ -171,7 +171,7 @@ public function buildOperations(EntityInterface $entity) { */ public function render() { $build = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $this->buildHeader(), '#title' => $this->getTitle(), '#rows' => array(), diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php b/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php index f7313cc..5e89acf 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php @@ -174,7 +174,7 @@ public function adminOverview() { } $build['feeds'] = array( '#prefix' => '

' . $this->t('Feed overview') . '

', - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => $this->t('No feeds available. Add feed.', array('@link' => $this->urlGenerator()->generateFromPath('admin/config/services/aggregator/add/feed'))), diff --git a/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php b/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php index 29ca186..bfaeb7a 100644 --- a/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php +++ b/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php @@ -90,7 +90,7 @@ public function buildForm(array $form, array &$form_state, $default_ip = '') { ); $form['ban_ip_banning_table'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => $this->t('No blocked IP addresses available.'), diff --git a/core/modules/book/lib/Drupal/book/Controller/BookController.php b/core/modules/book/lib/Drupal/book/Controller/BookController.php index b9920d2..be9ef35 100644 --- a/core/modules/book/lib/Drupal/book/Controller/BookController.php +++ b/core/modules/book/lib/Drupal/book/Controller/BookController.php @@ -89,7 +89,7 @@ public function adminOverview() { $rows[] = $row; } return array( - '#theme' => 'table', + '#type' => 'table', '#header' => $headers, '#rows' => $rows, '#empty' => t('No books available.'), diff --git a/core/modules/comment/lib/Drupal/comment/Controller/AdminController.php b/core/modules/comment/lib/Drupal/comment/Controller/AdminController.php index fc04bd8..8fbc4fd 100644 --- a/core/modules/comment/lib/Drupal/comment/Controller/AdminController.php +++ b/core/modules/comment/lib/Drupal/comment/Controller/AdminController.php @@ -169,7 +169,7 @@ public function overviewBundles() { } $build['overview'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => $this->t('No comment forms available.'), diff --git a/core/modules/config/lib/Drupal/config/Controller/ConfigController.php b/core/modules/config/lib/Drupal/config/Controller/ConfigController.php index ee5cd4a..18f6287 100644 --- a/core/modules/config/lib/Drupal/config/Controller/ConfigController.php +++ b/core/modules/config/lib/Drupal/config/Controller/ConfigController.php @@ -115,7 +115,7 @@ public function diff($config_file) { $build['#attached']['css'][] = drupal_get_path('module', 'system') . '/css/system.diff.css'; $build['diff'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => array( array('data' => t('Old'), 'colspan' => '2'), array('data' => t('New'), 'colspan' => '2'), diff --git a/core/modules/config/lib/Drupal/config/Form/ConfigSync.php b/core/modules/config/lib/Drupal/config/Form/ConfigSync.php index 63acbc4..063cc60 100644 --- a/core/modules/config/lib/Drupal/config/Form/ConfigSync.php +++ b/core/modules/config/lib/Drupal/config/Form/ConfigSync.php @@ -136,7 +136,7 @@ public function buildForm(array $form, array &$form_state) { $storage_comparer = new StorageComparer($this->sourceStorage, $this->targetStorage); if (empty($source_list) || !$storage_comparer->createChangelist()->hasChanges()) { $form['no_changes'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => array('Name', 'Operations'), '#rows' => array(), '#empty' => $this->t('There are no configuration changes.'), @@ -182,7 +182,7 @@ public function buildForm(array $form, array &$form_state) { break; } $form[$config_change_type]['list'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => array('Name', 'Operations'), ); diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationMapperList.php b/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationMapperList.php index 8b7f63f..14f9724 100644 --- a/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationMapperList.php +++ b/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationMapperList.php @@ -53,7 +53,7 @@ public static function create(ContainerInterface $container) { */ public function render() { $build = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $this->buildHeader(), '#rows' => array(), ); diff --git a/core/modules/content_translation/content_translation.pages.inc b/core/modules/content_translation/content_translation.pages.inc index 0b6a4dc..7a11cd1 100644 --- a/core/modules/content_translation/content_translation.pages.inc +++ b/core/modules/content_translation/content_translation.pages.inc @@ -136,7 +136,7 @@ function content_translation_overview(EntityInterface $entity) { $build['#entity'] = $entity; $build['content_translation_overview'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, ); diff --git a/core/modules/dblog/lib/Drupal/dblog/Controller/DbLogController.php b/core/modules/dblog/lib/Drupal/dblog/Controller/DbLogController.php index 9728f35..d891bfe 100644 --- a/core/modules/dblog/lib/Drupal/dblog/Controller/DbLogController.php +++ b/core/modules/dblog/lib/Drupal/dblog/Controller/DbLogController.php @@ -205,7 +205,7 @@ public function overview() { } $build['dblog_table'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#attributes' => array('id' => 'admin-dblog', 'class' => array('admin-dblog')), @@ -280,7 +280,7 @@ public function eventDetails($event_id) { ), ); $build['dblog_table'] = array( - '#theme' => 'table', + '#type' => 'table', '#rows' => $rows, '#attributes' => array('class' => array('dblog-event')), ); @@ -379,7 +379,7 @@ public function topLogMessages($type) { } $build['dblog_top_table'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => $this->t('No log messages available.'), diff --git a/core/modules/field_ui/field_ui.module b/core/modules/field_ui/field_ui.module index b43c179..a449c7b 100644 --- a/core/modules/field_ui/field_ui.module +++ b/core/modules/field_ui/field_ui.module @@ -275,7 +275,7 @@ function field_ui_view_mode_delete(EntityViewModeInterface $view_mode) { */ function theme_field_ui_table($variables) { $elements = $variables['elements']; - $table = array('#theme' => 'table'); + $table = array('#type' => 'table'); // Add table headers and attributes. foreach (array('#header', '#attributes') as $key) { diff --git a/core/modules/file/file.field.inc b/core/modules/file/file.field.inc index 8a64332..02e499b 100644 --- a/core/modules/file/file.field.inc +++ b/core/modules/file/file.field.inc @@ -271,7 +271,7 @@ function theme_file_formatter_table($variables) { } $build = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, ); diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtml.php b/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtml.php index a49f5f4..5224677 100644 --- a/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtml.php +++ b/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtml.php @@ -152,7 +152,7 @@ public function tips($long = FALSE) { } } $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, ); @@ -177,7 +177,7 @@ public function tips($long = FALSE) { ); } $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, ); diff --git a/core/modules/image/image.admin.inc b/core/modules/image/image.admin.inc index a883bc2..1f43cf8 100644 --- a/core/modules/image/image.admin.inc +++ b/core/modules/image/image.admin.inc @@ -192,7 +192,7 @@ function theme_image_anchor($variables) { } $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => array(), '#rows' => $rows, '#attributes' => array('class' => array('image-anchor')), diff --git a/core/modules/language/language.admin.inc b/core/modules/language/language.admin.inc index 0a3fc75..997fff5 100644 --- a/core/modules/language/language.admin.inc +++ b/core/modules/language/language.admin.inc @@ -140,7 +140,7 @@ function theme_language_negotiation_configure_browser_form_table($variables) { ); $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#attributes' => array('id' => 'lang-neg-browser'), @@ -292,7 +292,7 @@ function template_preprocess_language_content_settings_table(&$variables) { '#title' => $element['#title'], '#header' => $header, '#rows' => $rows, - '#theme' => 'table', + '#type' => 'table', ); } diff --git a/core/modules/locale/locale.pages.inc b/core/modules/locale/locale.pages.inc index 98f4db9..af47c49 100644 --- a/core/modules/locale/locale.pages.inc +++ b/core/modules/locale/locale.pages.inc @@ -298,7 +298,7 @@ function theme_locale_translate_edit_form_strings($variables) { ); } $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => t('No strings available.'), diff --git a/core/modules/node/node.module b/core/modules/node/node.module index f72bbc5..1f34347 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -898,7 +898,7 @@ function theme_node_search_admin($variables) { $rows[] = $row; } $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, ); diff --git a/core/modules/node/node.pages.inc b/core/modules/node/node.pages.inc index e751bc2..6b0422b 100644 --- a/core/modules/node/node.pages.inc +++ b/core/modules/node/node.pages.inc @@ -175,7 +175,7 @@ function node_revision_overview($node) { } $build['node_revisions_table'] = array( - '#theme' => 'table', + '#type' => 'table', '#rows' => $rows, '#header' => $header, '#attached' => array ( diff --git a/core/modules/path/path.admin.inc b/core/modules/path/path.admin.inc index fe8d542..760c574 100644 --- a/core/modules/path/path.admin.inc +++ b/core/modules/path/path.admin.inc @@ -89,7 +89,7 @@ function path_admin_overview($keys = NULL) { } $build['path_table'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => t('No URL aliases available. Add URL alias.', array('@link' => url('admin/config/search/path/add'))), diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Form/SimpletestResultsForm.php b/core/modules/simpletest/lib/Drupal/simpletest/Form/SimpletestResultsForm.php index a166422..809ef4e 100644 --- a/core/modules/simpletest/lib/Drupal/simpletest/Form/SimpletestResultsForm.php +++ b/core/modules/simpletest/lib/Drupal/simpletest/Form/SimpletestResultsForm.php @@ -171,7 +171,7 @@ public function buildForm(array $form, array &$form_state, $test_id = NULL) { $form['result']['summary']['#' . $assertion->status]++; } $form['result']['results'][$group]['table'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, ); diff --git a/core/modules/simpletest/simpletest.theme.inc b/core/modules/simpletest/simpletest.theme.inc index 072ac65..d67ab8c 100644 --- a/core/modules/simpletest/simpletest.theme.inc +++ b/core/modules/simpletest/simpletest.theme.inc @@ -143,7 +143,7 @@ function theme_simpletest_test_table($variables) { } else { $simpletest_form_table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#attributes' => array('id' => 'simpletest-form-table'), diff --git a/core/modules/system/system.admin.inc b/core/modules/system/system.admin.inc index 4a6005d..46a9975 100644 --- a/core/modules/system/system.admin.inc +++ b/core/modules/system/system.admin.inc @@ -400,7 +400,7 @@ function theme_system_modules_details($variables) { } $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $form['#header'], '#rows' => $rows, ); @@ -464,7 +464,7 @@ function theme_system_modules_uninstall($variables) { } $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => t('No modules are available to uninstall.'), diff --git a/core/modules/tracker/tracker.pages.inc b/core/modules/tracker/tracker.pages.inc index e94c163..8922672 100644 --- a/core/modules/tracker/tracker.pages.inc +++ b/core/modules/tracker/tracker.pages.inc @@ -139,7 +139,7 @@ function tracker_page($account = NULL) { $page['tracker'] = array( '#rows' => $rows, '#header' => array(t('Type'), t('Title'), t('Author'), t('Replies'), t('Last updated')), - '#theme' => 'table', + '#type' => 'table', '#empty' => t('No content available.'), ); $page['pager'] = array( diff --git a/core/modules/update/update.manager.inc b/core/modules/update/update.manager.inc index b0d0483..e4169c6 100644 --- a/core/modules/update/update.manager.inc +++ b/core/modules/update/update.manager.inc @@ -267,7 +267,7 @@ function update_manager_update_form($form, $form_state = array(), $context) { $prefix = '

' . t('Manual updates required') . '

'; $prefix .= '

' . t('Updates of Drupal core are not supported at this time.') . '

'; $form['manual_updates'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $headers, '#rows' => $projects['manual'], '#prefix' => $prefix, diff --git a/core/modules/update/update.report.inc b/core/modules/update/update.report.inc index 51da7dd..8d01440 100644 --- a/core/modules/update/update.report.inc +++ b/core/modules/update/update.report.inc @@ -283,7 +283,7 @@ function theme_update_report($variables) { ksort($rows[$type_name]); $output .= "\n

" . $type_label . "

\n"; $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows[$type_name], '#attributes' => array( diff --git a/core/modules/views/views.api.php b/core/modules/views/views.api.php index d48f789..ea05e4f 100644 --- a/core/modules/views/views.api.php +++ b/core/modules/views/views.api.php @@ -576,9 +576,9 @@ function hook_views_query_alter(ViewExecutable $view, QueryPluginBase $query) { * * @param array $rows * An associative array with two keys: - * - query: An array of rows suitable for '#theme' => 'table', containing + * - query: An array of rows suitable for '#type' => 'table', containing * information about the query and the display title and path. - * - statistics: An array of rows suitable for '#theme' => 'table', + * - statistics: An array of rows suitable for '#type' => 'table', * containing performance statistics. * @param \Drupal\views\ViewExecutable $view * The view object. diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Controller/ViewsUIController.php b/core/modules/views_ui/lib/Drupal/views_ui/Controller/ViewsUIController.php index c68759a..c2fff62 100644 --- a/core/modules/views_ui/lib/Drupal/views_ui/Controller/ViewsUIController.php +++ b/core/modules/views_ui/lib/Drupal/views_ui/Controller/ViewsUIController.php @@ -97,7 +97,7 @@ public function reportFields() { // Sort rows by field name. ksort($rows); $output = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => t('No fields have been used in views yet.'), @@ -125,7 +125,7 @@ public function reportPlugins() { // Sort rows by field name. ksort($rows); return array( - '#theme' => 'table', + '#type' => 'table', '#header' => array(t('Type'), t('Name'), t('Provided by'), t('Used in')), '#rows' => $rows, '#empty' => t('There are no enabled views.'), diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ViewListController.php b/core/modules/views_ui/lib/Drupal/views_ui/ViewListController.php index 9ff3d79..2637326 100644 --- a/core/modules/views_ui/lib/Drupal/views_ui/ViewListController.php +++ b/core/modules/views_ui/lib/Drupal/views_ui/ViewListController.php @@ -196,7 +196,7 @@ public function render() { $list[$status]['#type'] = 'container'; $list[$status]['#attributes'] = array('class' => array('views-list-section', $status)); $list[$status]['table'] = array( - '#theme' => 'table', + '#type' => 'table', '#attributes' => array( 'class' => array('views-listing-table'), ), diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ViewUI.php b/core/modules/views_ui/lib/Drupal/views_ui/ViewUI.php index 965f676..0af908d 100644 --- a/core/modules/views_ui/lib/Drupal/views_ui/ViewUI.php +++ b/core/modules/views_ui/lib/Drupal/views_ui/ViewUI.php @@ -712,7 +712,7 @@ public function renderPreview($display_id, $args = array()) { // Assemble the preview, the query info, and the query statistics in the // requested order. $table = array( - '#theme' => 'table', + '#type' => 'table', '#prefix' => '
', '#suffix' => '
', ); diff --git a/core/modules/views_ui/views_ui.theme.inc b/core/modules/views_ui/views_ui.theme.inc index db4f3e8..2d23eae 100644 --- a/core/modules/views_ui/views_ui.theme.inc +++ b/core/modules/views_ui/views_ui.theme.inc @@ -195,7 +195,7 @@ function theme_views_ui_build_group_filter_form($variables) { $rows[] = array('data' => $data, 'id' => 'views-row-' . $group_id, 'class' => array('draggable')); } $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#attributes' => array( @@ -297,7 +297,7 @@ function theme_views_ui_rearrange_filter_form(&$variables) { if (!empty($ungroupable_rows)) { $header = array(t('Ungroupable filters'), t('Weight'), array('class' => array('views-hide-label'), 'data' => t('Group')), array('class' => array('views-hide-label'), 'data' => t('Remove'))); $table = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $ungroupable_rows, '#attributes' => array( @@ -317,7 +317,7 @@ function theme_views_ui_rearrange_filter_form(&$variables) { // Set up tabledrag so that the weights are changed when rows are dragged. $table = array( - '#theme' => 'table', + '#type' => 'table', '#rows' => $rows, '#attributes' => array( 'id' => 'views-rearrange-filters',