diff --git a/core/includes/ajax.inc b/core/includes/ajax.inc index 1bced44..cc66dcb 100644 --- a/core/includes/ajax.inc +++ b/core/includes/ajax.inc @@ -231,7 +231,7 @@ * functions. */ function ajax_render($commands = array()) { - // Ajax responses aren't rendered with html.tpl.php, so we have to call + // Ajax responses aren't rendered with html.html.twig, so we have to call // drupal_get_css() and drupal_get_js() here, in order to have new files added // during this request to be loaded by the page. We only want to send back // files that the page hasn't already loaded, so we implement simple diffing diff --git a/core/includes/common.inc b/core/includes/common.inc index 1931f0b..0620216 100644 --- a/core/includes/common.inc +++ b/core/includes/common.inc @@ -2929,8 +2929,8 @@ function drupal_get_library($module, $name = NULL) { * relationships. * * Note that this function should be called from the theme layer, such as in a - * .tpl.php file, theme_ function, or in a template_preprocess function, not in - * a form declaration. Though the same JavaScript could be added to the page + * .html.twig file, theme_ function, or in a template_preprocess function, not + * in a form declaration. Though the same JavaScript could be added to the page * using drupal_add_js() directly, this function helps keep template files * clean and readable. It also prevents tabledrag.js from being added twice * accidentally. @@ -2964,7 +2964,6 @@ function drupal_get_library($module, $name = NULL) { * column should not be hidden. * @param $limit * (optional) Limit the maximum amount of parenting in this table. - * @see block-admin-display-form.tpl.php * @see theme_menu_overview_form() */ function drupal_add_tabledrag($table_id, $action, $relationship, $group, $subgroup = NULL, $source = NULL, $hidden = TRUE, $limit = 0) { @@ -3894,7 +3893,7 @@ function drupal_render(&$elements) { // children. // #states and #attached have to be processed before #theme_wrappers, because // the #type 'page' render array from drupal_render_page() would render the - // $page and wrap it into the html.tpl.php template without the attached + // $page and wrap it into the html.html.twig template without the attached // assets otherwise. // If the internal #render_children property is set, do not call the // #theme_wrappers function(s) to prevent infinite recursion. diff --git a/core/includes/theme.inc b/core/includes/theme.inc index 5296b08..382e8d6 100644 --- a/core/includes/theme.inc +++ b/core/includes/theme.inc @@ -814,7 +814,7 @@ function drupal_find_base_themes($themes, $key, $used_keys = array()) { * (see hook_theme() for details). Default templates are implemented with the * Twig rendering engine and are named the same as the theme hook, with * underscores changed to hyphens, so for the 'taxonomy_term' theme hook, the - * default template is 'taxonomy-term.tpl.php'. + * default template is 'taxonomy-term.html.twig'. * * @subsection sub_overriding_theme_hooks Overriding Theme Hooks * Themes may also register new theme hooks within a hook_theme() @@ -2568,7 +2568,7 @@ function template_preprocess_html(&$variables) { $variables['head_title_array'] = $head_title; $variables['head_title'] = implode(' | ', $head_title); - // Display the html.tpl.php's default mobile metatags for responsive design. + // Display the html.html.twig's default mobile metatags for responsive design. $elements = array( 'MobileOptimized' => array( '#tag' => 'meta', @@ -2951,13 +2951,17 @@ function template_preprocess_install_page(&$variables) { } /** - * Preprocess variables for region.tpl.php + * Prepares variables for region templates. + * + * Default template: region.html.twig. * * Prepares the values passed to the theme_region function to be passed into a * pluggable template engine. Uses the region name to generate a template file - * suggestions. If none are found, the default region.tpl.php is used. + * suggestions. * - * @see region.tpl.php + * @param array $variables + * An associative array containing: + * - elements: An associative array containing properties of the region. */ function template_preprocess_region(&$variables) { // Create the $content variable that templates expect. diff --git a/core/lib/Drupal/Core/Ajax/AjaxResponse.php b/core/lib/Drupal/Core/Ajax/AjaxResponse.php index b94d6a6..0049b66 100644 --- a/core/lib/Drupal/Core/Ajax/AjaxResponse.php +++ b/core/lib/Drupal/Core/Ajax/AjaxResponse.php @@ -69,7 +69,7 @@ public function prepare(Request $request) { * An array of commands ready to be returned as JSON. */ protected function ajaxRender(Request $request) { - // Ajax responses aren't rendered with html.tpl.php, so we have to call + // Ajax responses aren't rendered with html.html.twig, so we have to call // drupal_get_css() and drupal_get_js() here, in order to have new files // added during this request to be loaded by the page. We only want to send // back files that the page hasn't already loaded, so we implement simple diff --git a/core/modules/aggregator/aggregator.module b/core/modules/aggregator/aggregator.module index 416571d..a60459f 100644 --- a/core/modules/aggregator/aggregator.module +++ b/core/modules/aggregator/aggregator.module @@ -496,7 +496,7 @@ function aggregator_filter_xss($value) { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function aggregator_preprocess_block(&$variables) { if ($variables['configuration']['module'] == 'aggregator') { diff --git a/core/modules/book/book.module b/core/modules/book/book.module index e113661..e31332d 100644 --- a/core/modules/book/book.module +++ b/core/modules/book/book.module @@ -953,7 +953,7 @@ function _book_link_defaults($nid) { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function book_preprocess_block(&$variables) { if ($variables['configuration']['module'] == 'book') { diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module index b38892d..3c36d58 100644 --- a/core/modules/comment/comment.module +++ b/core/modules/comment/comment.module @@ -1462,7 +1462,7 @@ function comment_preview(Comment $comment) { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function comment_preprocess_block(&$variables) { if ($variables['configuration']['module'] == 'comment') { diff --git a/core/modules/edit/edit.module b/core/modules/edit/edit.module index a7fbb5d..11ede91 100644 --- a/core/modules/edit/edit.module +++ b/core/modules/edit/edit.module @@ -159,7 +159,7 @@ function edit_field_formatter_info_alter(&$info) { } /** - * Implements hook_preprocess_HOOK() for field.tpl.php. + * Implements hook_preprocess_HOOK() for field templates. */ function edit_preprocess_field(&$variables) { $element = $variables['element']; diff --git a/core/modules/forum/forum.module b/core/modules/forum/forum.module index 4621ddd..3eb8711 100644 --- a/core/modules/forum/forum.module +++ b/core/modules/forum/forum.module @@ -946,7 +946,7 @@ function forum_get_topics($tid, $sortby, $forum_per_page) { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function forum_preprocess_block(&$variables) { if ($variables['configuration']['module'] == 'forum') { diff --git a/core/modules/help/help.module b/core/modules/help/help.module index 9c86f45..69d4a8b 100644 --- a/core/modules/help/help.module +++ b/core/modules/help/help.module @@ -58,7 +58,7 @@ function help_help($path, $arg) { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function help_preprocess_block(&$variables) { if ($variables['plugin_id'] == 'system_help_block') { diff --git a/core/modules/language/language.module b/core/modules/language/language.module index 66433d3..1b2d0af 100644 --- a/core/modules/language/language.module +++ b/core/modules/language/language.module @@ -787,7 +787,7 @@ function language_language_delete($language) { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function language_preprocess_block(&$variables) { if ($variables['configuration']['module'] == 'language') { diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module index c83ff19..081d7bd 100644 --- a/core/modules/locale/locale.module +++ b/core/modules/locale/locale.module @@ -866,7 +866,7 @@ function locale_system_file_system_settings_submit(&$form, $form_state) { } /** - * Implements hook_preprocess_HOOK() for node.html.twig. + * Implements hook_preprocess_HOOK() for node templates. */ function locale_preprocess_node(&$variables) { if ($variables['node']->langcode != Language::LANGCODE_NOT_SPECIFIED) { diff --git a/core/modules/menu/menu.module b/core/modules/menu/menu.module index 36cedbe..6069592 100644 --- a/core/modules/menu/menu.module +++ b/core/modules/menu/menu.module @@ -697,7 +697,7 @@ function menu_get_menus($all = TRUE) { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function menu_preprocess_block(&$variables) { if ($variables['configuration']['module'] == 'menu') { diff --git a/core/modules/node/node.api.php b/core/modules/node/node.api.php index 2166391..c891ec0 100644 --- a/core/modules/node/node.api.php +++ b/core/modules/node/node.api.php @@ -634,7 +634,7 @@ function hook_node_prepare_form(\Drupal\node\NodeInterface $node, $form_display, * theming. * * @see template_preprocess_search_result() - * @see search-result.tpl.php + * @see search-result.html.twig * * @ingroup node_api_hooks */ diff --git a/core/modules/node/node.module b/core/modules/node/node.module index dab8696..7460284 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -651,7 +651,7 @@ function node_is_page(EntityInterface $node) { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function node_preprocess_block(&$variables) { if ($variables['configuration']['module'] == 'node') { diff --git a/core/modules/overlay/overlay.module b/core/modules/overlay/overlay.module index 2edb256..53a8776 100644 --- a/core/modules/overlay/overlay.module +++ b/core/modules/overlay/overlay.module @@ -340,7 +340,7 @@ function overlay_system_info_alter(&$info, $file, $type) { } /** - * Implements hook_preprocess_HOOK() for html.tpl.php. + * Implements hook_preprocess_HOOK() for HTML document templates. * * If the current page request is inside the overlay, add appropriate classes * to the element, and simplify the page title. @@ -355,7 +355,7 @@ function overlay_preprocess_html(&$variables) { } /** - * Implements hook_preprocess_HOOK() for maintenance-page.html.twig. + * Implements hook_preprocess_HOOK() for maintenance page templates. * * If the current page request is inside the overlay, add appropriate classes * to the element, and simplify the page title. @@ -365,12 +365,16 @@ function overlay_preprocess_maintenance_page(&$variables) { } /** - * Implements template_preprocess_HOOK() for overlay.tpl.php + * Prepares variables for overlay templates. + * + * Default template: overlay.html.twig. * * If the current page request is inside the overlay, add appropriate classes * to the element, and simplify the page title. * - * @see overlay.tpl.php + * @param array $variables + * An associative array containing: + * - page: A render element representing the page. */ function template_preprocess_overlay(&$variables) { $variables['tabs'] = menu_primary_local_tasks(); @@ -388,7 +392,7 @@ function template_preprocess_overlay(&$variables) { } /** - * Implements hook_preprocess_HOOK() for page.tpl.php. + * Implements hook_preprocess_HOOK() for page templates. * * If the current page request is inside the overlay, hide the tabs. * diff --git a/core/modules/rdf/rdf.module b/core/modules/rdf/rdf.module index 06b25a0..d38f3dd 100644 --- a/core/modules/rdf/rdf.module +++ b/core/modules/rdf/rdf.module @@ -226,7 +226,7 @@ function rdf_theme() { } /** - * Implements hook_preprocess_HOOK() for html.tpl.php. + * Implements hook_preprocess_HOOK() for HTML document templates. */ function rdf_preprocess_html(&$variables) { // Adds RDF namespace prefix bindings in the form of an RDFa 1.1 prefix @@ -241,7 +241,7 @@ function rdf_preprocess_html(&$variables) { } /** - * Implements hook_preprocess_HOOK() for node.html.twig. + * Implements hook_preprocess_HOOK() for node templates. */ function rdf_preprocess_node(&$variables) { // Adds RDFa markup to the node container. The about attribute specifies the @@ -318,7 +318,7 @@ function rdf_preprocess_node(&$variables) { } /** - * Implements hook_preprocess_HOOK() for field.tpl.php. + * Implements hook_preprocess_HOOK() for field templates. */ function rdf_preprocess_field(&$variables) { $element = $variables['element']; @@ -355,7 +355,7 @@ function rdf_preprocess_field(&$variables) { } /** - * Implements hook_preprocess_HOOK() for user.tpl.php. + * Implements hook_preprocess_HOOK() for user templates. */ function rdf_preprocess_user(&$variables) { $account = $variables['elements']['#user']; @@ -449,7 +449,7 @@ function rdf_preprocess_username(&$variables) { } /** - * Implements hook_preprocess_HOOK() for comment.html.twig. + * Implements hook_preprocess_HOOK() for comment templates. */ function rdf_preprocess_comment(&$variables) { $comment = $variables['comment']; @@ -538,7 +538,7 @@ function rdf_preprocess_comment(&$variables) { } /** - * Implements hook_preprocess_HOOK() for taxonomy-term.tpl.php. + * Implements hook_preprocess_HOOK() for taxonomy term templates. */ function rdf_preprocess_taxonomy_term(&$variables) { $term = $variables['term']; diff --git a/core/modules/search/search.api.php b/core/modules/search/search.api.php index 1a343d2..69c78f7 100644 --- a/core/modules/search/search.api.php +++ b/core/modules/search/search.api.php @@ -255,8 +255,8 @@ function hook_search_execute($keys = NULL, $conditions = NULL) { * A renderable array, which will render the formatted search results with a * pager included. * - * @see search-result.tpl.php - * @see search-results.tpl.php + * @see search-result.html.twig + * @see search-results.html.twig */ function hook_search_page($results) { $output['prefix']['#markup'] = '
    '; diff --git a/core/modules/search/search.module b/core/modules/search/search.module index ac06f3e..4e87a2b 100644 --- a/core/modules/search/search.module +++ b/core/modules/search/search.module @@ -136,7 +136,7 @@ function search_permission() { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function search_preprocess_block(&$variables) { if ($variables['plugin_id'] == 'search_form_block') { diff --git a/core/modules/shortcut/shortcut.module b/core/modules/shortcut/shortcut.module index 57ff7d7..5b8fcbc 100644 --- a/core/modules/shortcut/shortcut.module +++ b/core/modules/shortcut/shortcut.module @@ -439,7 +439,7 @@ function shortcut_renderable_links($shortcut_set = NULL) { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function shortcut_preprocess_block(&$variables) { if ($variables['configuration']['module'] == 'shortcut') { @@ -448,7 +448,7 @@ function shortcut_preprocess_block(&$variables) { } /** - * Implements hook_preprocess_HOOK() for page.tpl.php. + * Implements hook_preprocess_HOOK() for page templates. */ function shortcut_preprocess_page(&$variables) { // Only display the shortcut link if the user has the ability to edit diff --git a/core/modules/statistics/statistics.module b/core/modules/statistics/statistics.module index c40fc6a..cfa217e 100644 --- a/core/modules/statistics/statistics.module +++ b/core/modules/statistics/statistics.module @@ -237,7 +237,7 @@ function statistics_update_index() { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function statistics_preprocess_block(&$variables) { if ($variables['configuration']['module'] == 'statistics') { diff --git a/core/modules/system/lib/Drupal/system/Tests/FileTransfer/FileTransferTest.php b/core/modules/system/lib/Drupal/system/Tests/FileTransfer/FileTransferTest.php index 080e8fd..ca1c49d 100644 --- a/core/modules/system/lib/Drupal/system/Tests/FileTransfer/FileTransferTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/FileTransfer/FileTransferTest.php @@ -37,7 +37,7 @@ function _getFakeModuleFiles() { 'fake.module', 'fake.info.yml', 'theme' => array( - 'fake.tpl.php' + 'fake.html.twig' ), 'inc' => array( 'fake.inc' diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlAttributesTest.php b/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlAttributesTest.php new file mode 100644 index 0000000..8b5416a --- /dev/null +++ b/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlAttributesTest.php @@ -0,0 +1,42 @@ + and attributes. + */ +class HtmlAttributesTest extends WebTestBase { + + /** + * Modules to enable. + * + * @var array + */ + public static $modules = array('theme_test'); + + public static function getInfo() { + return array( + 'name' => ' and attributes', + 'description' => 'Tests attributes inserted in the and elements of the page.', + 'group' => 'Theme', + ); + } + + /** + * Tests that the variables in the and tags can be altered. + */ + function testThemeHtmlAttributes() { + $this->drupalGet(''); + $attributes = $this->xpath('/html[@theme_test_html_attribute="theme test html attribute value"]'); + $this->assertTrue(count($attributes) == 1, 'Attribute set in the html element via hook_preprocess_HOOK() found.'); + $attributes = $this->xpath('/html/body[@theme_test_body_attribute="theme test body attribute value"]'); + $this->assertTrue(count($attributes) == 1, 'Attribute set in the body element via hook_preprocess_HOOK() found.'); + } +} diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlTplPhpAttributesTest.php b/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlTplPhpAttributesTest.php deleted file mode 100644 index d06b165..0000000 --- a/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlTplPhpAttributesTest.php +++ /dev/null @@ -1,42 +0,0 @@ - 'html.tpl.php html and body attributes', - 'description' => 'Tests attributes inserted in the html and body elements of html.tpl.php.', - 'group' => 'Theme', - ); - } - - /** - * Tests that modules and themes can alter variables in html.tpl.php. - */ - function testThemeHtmlTplPhpAttributes() { - $this->drupalGet(''); - $attributes = $this->xpath('/html[@theme_test_html_attribute="theme test html attribute value"]'); - $this->assertTrue(count($attributes) == 1, 'Attribute set in the html element via hook_preprocess_HOOK() for html.tpl.php found.'); - $attributes = $this->xpath('/html/body[@theme_test_body_attribute="theme test body attribute value"]'); - $this->assertTrue(count($attributes) == 1, 'Attribute set in the body element via hook_preprocess_HOOK() for html.tpl.php found.'); - } -} diff --git a/core/modules/system/system.api.php b/core/modules/system/system.api.php index ca80944..ed2bbb1 100644 --- a/core/modules/system/system.api.php +++ b/core/modules/system/system.api.php @@ -1553,7 +1553,7 @@ function hook_permission() { * path, include it here. This path should be relative to the Drupal root * directory. * - template: If specified, this theme implementation is a template, and - * this is the template file without an extension. Do not put .tpl.php on + * this is the template file without an extension. Do not put .html.twig on * this file; that extension will be added automatically by the default * rendering engine (which is Twig). If 'path' above is specified, the * template should also be in this path. @@ -1583,7 +1583,7 @@ function hook_permission() { * - override preprocess functions: Set to TRUE when a theme does NOT want * the standard preprocess functions to run. This can be used to give a * theme FULL control over how variables are set. For example, if a theme - * wants total control over how certain variables in the page.tpl.php are + * wants total control over how certain variables in the page.html.twig are * set, this can be set to true. Please keep in mind that when this is used * by a theme, that theme becomes responsible for making sure necessary * variables are set. diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 536e6d2..fd654b9 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -2318,7 +2318,7 @@ function system_user_timezone(&$form, &$form_state) { } /** - * Implements hook_preprocess_HOOK() for block.html.twig. + * Implements hook_preprocess_HOOK() for block templates. */ function system_preprocess_block(&$variables) { // Derive the base plugin ID. diff --git a/core/modules/system/tests/modules/theme_test/theme_test.module b/core/modules/system/tests/modules/theme_test/theme_test.module index 40a78f3..8cbcde8 100644 --- a/core/modules/system/tests/modules/theme_test/theme_test.module +++ b/core/modules/system/tests/modules/theme_test/theme_test.module @@ -150,7 +150,7 @@ function _theme_test_suggestion() { } /** - * Implements hook_preprocess_HOOK() for html.tpl.php. + * Implements hook_preprocess_HOOK() for HTML document templates. */ function theme_test_preprocess_html(&$variables) { $variables['html_attributes']['theme_test_html_attribute'] = 'theme test html attribute value'; @@ -184,7 +184,13 @@ function theme_theme_test_function_template_override($variables) { } /** - * Process variables for theme-test-render-element.tpl.php. + * Prepares variables for test render element templates. + * + * Default template: theme-test-render-element.html.twig. + * + * @param array $variables + * An associative array containing: + * - elements: An associative array containing the properties of the element. */ function template_preprocess_theme_test_render_element(&$variables) { $variables['attributes']['data-variables-are-preprocessed'] = TRUE; diff --git a/core/modules/taxonomy/taxonomy.api.php b/core/modules/taxonomy/taxonomy.api.php index 7b20e85..0006808 100644 --- a/core/modules/taxonomy/taxonomy.api.php +++ b/core/modules/taxonomy/taxonomy.api.php @@ -282,7 +282,7 @@ function hook_taxonomy_term_view(\Drupal\taxonomy\Plugin\Core\Entity\Term $term, * If the module wishes to act on the rendered HTML of the term rather than the * structured content array, it may use this hook to add a #post_render * callback. Alternatively, it could also implement - * hook_preprocess_HOOK() for taxonomy-term.tpl.php. See drupal_render() and + * hook_preprocess_HOOK() for taxonomy-term.html.twig. See drupal_render() and * theme() documentation respectively for details. * * @param $build diff --git a/core/modules/tour/tour.module b/core/modules/tour/tour.module index affdc49..249c758 100644 --- a/core/modules/tour/tour.module +++ b/core/modules/tour/tour.module @@ -104,7 +104,7 @@ function tour_toolbar() { } /** - * Implements hook_preprocess_HOOK() for page.tpl.php. + * Implements hook_preprocess_HOOK() for page templates. */ function tour_preprocess_page(&$variables) { if (!user_access('access tour')) { diff --git a/core/modules/user/user.api.php b/core/modules/user/user.api.php index d83832c..3ae4f1a 100644 --- a/core/modules/user/user.api.php +++ b/core/modules/user/user.api.php @@ -347,7 +347,7 @@ function hook_user_view(\Drupal\user\UserInterface $account, \Drupal\entity\Plug * If the module wishes to act on the rendered HTML of the user rather than the * structured content array, it may use this hook to add a #post_render callback. * Alternatively, it could also implement hook_preprocess_HOOK() for - * user.tpl.php. See drupal_render() and theme() documentation + * user.html.twig. See drupal_render() and theme() documentation * respectively for details. * * @param $build diff --git a/core/modules/user/user.module b/core/modules/user/user.module index 0a8d4ab..45aea10 100644 --- a/core/modules/user/user.module +++ b/core/modules/user/user.module @@ -1413,7 +1413,7 @@ function user_view_page($account) { * - $page['content']['#user']: * The user account of the profile being viewed. * - * To theme user profiles, copy modules/user/user.tpl.php + * To theme user profiles, copy core/modules/user/templates/user.html.twig * to your theme directory, and edit it as instructed in that file's comments. * * @param $account diff --git a/core/modules/views/tests/modules/views_test_data/views_test_data.module b/core/modules/views/tests/modules/views_test_data/views_test_data.module index b00f8e8..6537bec 100644 --- a/core/modules/views/tests/modules/views_test_data/views_test_data.module +++ b/core/modules/views/tests/modules/views_test_data/views_test_data.module @@ -56,7 +56,7 @@ function views_test_data_handler_test_access_callback_argument($argument = FALSE } /** - * Implements hook_preprocess_HOOK() for views-view-table.tpl.php. + * Implements hook_preprocess_HOOK() for views table templates. */ function views_test_data_preprocess_views_view_table(&$variables) { if ($variables['view']->storage->id() == 'test_view_render') { diff --git a/core/modules/views/views.module b/core/modules/views/views.module index c7c2b31..038a1e1 100644 --- a/core/modules/views/views.module +++ b/core/modules/views/views.module @@ -473,8 +473,8 @@ function views_preprocess_html(&$variables) { // associated with. This we don't want; for better visual highlighting, we // prefer a smaller region to be chosen. The region we prefer differs from // theme to theme and depends on the details of the theme's markup in - // page.tpl.php, so we can only find it using JavaScript. We therefore remove - // the "contextual-region" class from the tag here and add + // page.html.twig, so we can only find it using JavaScript. We therefore + // remove the "contextual-region" class from the tag here and add // JavaScript that will insert it back in the correct place. if (!empty($variables['page']['#views_contextual_links'])) { $key = array_search('contextual-region', $variables['attributes']['class']); diff --git a/core/modules/views/views.theme.inc b/core/modules/views/views.theme.inc index a005b39..f665150 100644 --- a/core/modules/views/views.theme.inc +++ b/core/modules/views/views.theme.inc @@ -1178,16 +1178,16 @@ function theme_views_mini_pager($variables) { * The default style for all views is views-view-unformatted.html.twig. * * Many styles will then farm out the actual display of each row to a row - * style; the default row style is views-view-fields.tpl.php. + * style; the default row style is views-view-fields.html.twig. * * Here is an example of all the templates that will be tried in the following * case: * * View, named foobar. Style: unformatted. Row style: Fields. Display: Page. * - * - views-view--foobar--page.tpl.php - * - views-view--page.tpl.php - * - views-view--foobar.tpl.php + * - views-view--foobar--page.html.twig + * - views-view--page.html.twig + * - views-view--foobar.html.twig * - views-view.html.twig * * - views-view-unformatted--foobar--page.html.twig @@ -1195,10 +1195,10 @@ function theme_views_mini_pager($variables) { * - views-view-unformatted--foobar.html.twig * - views-view-unformatted.html.twig * - * - views-view-fields--foobar--page.tpl.php - * - views-view-fields--page.tpl.php - * - views-view-fields--foobar.tpl.php - * - views-view-fields.tpl.php + * - views-view-fields--foobar--page.html.twig + * - views-view-fields--page.html.twig + * - views-view-fields--foobar.html.twig + * - views-view-fields.html.twig * * Important! When adding a new template to your theme, be sure to flush the * theme registry cache! diff --git a/core/modules/views_ui/js/views-admin.js b/core/modules/views_ui/js/views-admin.js index d20b0af..3e5ca46 100644 --- a/core/modules/views_ui/js/views-admin.js +++ b/core/modules/views_ui/js/views-admin.js @@ -488,13 +488,14 @@ $.extend(Drupal.viewsUi.RearrangeFilterHandler.prototype, { insertAddRemoveFilterGroupLinks: function () { // Insert a link for adding a new group at the top of the page, and make it - // match the action links styling used in a typical page.tpl.php. Note that - // Drupal does not provide a theme function for this markup, so this is the - // best we can do. + // match the action link styling used in a typical page.html.twig. Since + // Drupal does not provide a theme function for this markup this is the best + // we can do. $('') .prependTo(this.table.parent()) // When the link is clicked, dynamically click the hidden form button for // adding a new filter group. + .once('views-rearrange-filter-handler') .on('click.views-rearrange-filter-handler', $.proxy(this, 'clickAddGroupButton')); @@ -756,7 +757,6 @@ $.extend(Drupal.viewsUi.RearrangeFilterHandler.prototype, { } }}); - /** * Add a select all checkbox, which checks each checkbox at once. */ diff --git a/core/modules/views_ui/views_ui.module b/core/modules/views_ui/views_ui.module index 7c41565..e1f8638 100644 --- a/core/modules/views_ui/views_ui.module +++ b/core/modules/views_ui/views_ui.module @@ -214,7 +214,7 @@ function views_ui_library_info() { } /** - * Implements hook_preprocess_HOOK() for views-view.html.twig. + * Implements hook_preprocess_HOOK() for views templates. */ function views_ui_preprocess_views_view(&$variables) { $view = $variables['view']; diff --git a/core/themes/bartik/bartik.theme b/core/themes/bartik/bartik.theme index 8f44e34..c626ca7 100644 --- a/core/themes/bartik/bartik.theme +++ b/core/themes/bartik/bartik.theme @@ -6,7 +6,7 @@ */ /** - * Implements hook_preprocess_HOOK() for html.tpl.php. + * Implements hook_preprocess_HOOK() for HTML document templates. * * Adds body classes if certain regions have content. */ @@ -30,7 +30,7 @@ function bartik_preprocess_html(&$variables) { } /** - * Implements hook_preprocess_HOOK() for page.html.twig. + * Implements hook_preprocess_HOOK() for page templates. */ function bartik_preprocess_page(&$variables) { // Pass the main menu and secondary menu to the template as render arrays. @@ -74,7 +74,7 @@ function bartik_preprocess_page(&$variables) { } /** - * Implements hook_preprocess_HOOK() for maintenance-page.html.twig. + * Implements hook_preprocess_HOOK() for maintenance page templates. */ function bartik_preprocess_maintenance_page(&$variables) { // By default, site_name is set to Drupal if no db connection is available @@ -103,7 +103,7 @@ function bartik_preprocess_maintenance_page(&$variables) { } /** - * Implements hook_preprocess_HOOK() for node.html.twig. + * Implements hook_preprocess_HOOK() for node templates. */ function bartik_preprocess_node(&$variables) { // Remove the "Add new comment" link on teasers or when the comment form is diff --git a/core/themes/seven/seven.theme b/core/themes/seven/seven.theme index a73fb56..4210cbf 100644 --- a/core/themes/seven/seven.theme +++ b/core/themes/seven/seven.theme @@ -8,11 +8,11 @@ use Drupal\Core\Template\RenderWrapper; /** - * Implements hook_preprocess_HOOK() for maintenance-page.html.twig. + * Implements hook_preprocess_HOOK() for maintenance page templates. */ function seven_preprocess_maintenance_page(&$variables) { - // While markup for normal pages is split into page.tpl.php and html.tpl.php, - // the markup for the maintenance page is all in the single + // While markup for normal pages is split into page.html.twig and + // html.html.twig, the markup for the maintenance page is all in the single // maintenance-page.html.twig template. So, to have what's done in // seven_preprocess_html() also happen on the maintenance page, it has to be // called here. @@ -20,14 +20,14 @@ function seven_preprocess_maintenance_page(&$variables) { } /** - * Implements hook_preprocess_HOOK() for html.tpl.php. + * Implements hook_preprocess_HOOK() for HTML document templates. */ function seven_preprocess_html(&$variables) { drupal_add_library('system', 'normalize'); } /** - * Implements hook_preprocess_HOOK() for page.tpl.php. + * Implements hook_preprocess_HOOK() for page templates. */ function seven_preprocess_page(&$variables) { $variables['primary_local_tasks'] = $variables['tabs']; diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php index fe16cfc..e26898b 100644 --- a/sites/default/default.settings.php +++ b/sites/default/default.settings.php @@ -568,7 +568,7 @@ * is explicitly set to maintenance mode through the administration page or when * the database is inactive due to an error. It can be set through the * 'maintenance_theme' key. The template file should also be copied into the - * theme. It is located inside 'core/modules/system/maintenance-page.tpl.php'. + * theme. It is located inside 'core/modules/system/maintenance-page.html.twig'. * Note: This setting does not apply to installation and update pages. */ # $conf['maintenance_theme'] = 'bartik';