diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php index b9971ce1cd102b62dcb65de2579a4ede243cbb31..423c90387ca0cb48c928efdd34014bd19f04d367 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php @@ -62,9 +62,9 @@ public function blockSubmit($form, &$form_state) { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { $id = $this->getPluginId(); if ($category = db_query('SELECT cid, title, block FROM {aggregator_category} WHERE cid = :cid', array(':cid' => $id))->fetchObject()) { $result = db_query_range('SELECT i.* FROM {aggregator_category_item} ci LEFT JOIN {aggregator_item} i ON ci.iid = i.iid WHERE ci.cid = :cid ORDER BY i.timestamp DESC, i.iid DESC', 0, $this->configuration['block_count'], array(':cid' => $category->cid)); diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php index b72936bf66d4564be09d7d16fc95bb760c3789bd..3cd519fbb2d3165943a69b5294f94fe81c9de8b4 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php @@ -62,9 +62,9 @@ public function blockSubmit($form, &$form_state) { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { // Plugin IDs look something like this: aggregator_feed_block:1. list(, $id) = explode(':', $this->getPluginId()); if ($feed = db_query('SELECT fid, title, block FROM {aggregator_feed} WHERE block <> 0 AND fid = :fid', array(':fid' => $id))->fetchObject()) { diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Block/CustomBlockBlock.php b/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Block/CustomBlockBlock.php index 01b11ba3a789106c38fc65e8554ea9cbcb76192a..0d17fa1e9400516e9e9c10dd556562c9d13f1831 100644 --- a/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Block/CustomBlockBlock.php +++ b/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Block/CustomBlockBlock.php @@ -67,9 +67,9 @@ public function blockSubmit($form, &$form_state) { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { // @todo Clean up when http://drupal.org/node/1874498 lands. list(, $uuid) = explode(':', $this->getPluginId()); if ($block = entity_load_by_uuid('custom_block', $uuid)) { diff --git a/core/modules/block/lib/Drupal/block/BlockBase.php b/core/modules/block/lib/Drupal/block/BlockBase.php index adb80fb3f346abcb34218af221d7150f508ce563..6efda890179af945918c9694329e6c94528a0f13 100644 --- a/core/modules/block/lib/Drupal/block/BlockBase.php +++ b/core/modules/block/lib/Drupal/block/BlockBase.php @@ -224,33 +224,4 @@ public function submit($form, &$form_state) { * @see \Drupal\block\BlockBase::submit() */ public function blockSubmit($form, &$form_state) {} - - /** - * Implements \Drupal\block\BlockInterface::build(). - */ - public function build() { - $build = array(); - $plugin_id = $this->getPluginId(); - if ($content = $this->blockBuild()) { - $build = array( - '#theme' => 'block', - 'content' => $content, - '#configuration' => $this->configuration, - '#plugin_id' => $plugin_id, - ); - $build['#configuration']['label'] = check_plain($this->configuration['label']); - } - list($base_id) = explode(':', $plugin_id); - drupal_alter(array('block_view', "block_view_$base_id"), $build, $this); - return $build; - } - - /** - * Adds block-type-specific render handling for the block plugin. - * - * @return array - * A renderable array representing the content of this block. - */ - abstract protected function blockBuild(); - } diff --git a/core/modules/block/lib/Drupal/block/BlockRenderController.php b/core/modules/block/lib/Drupal/block/BlockRenderController.php index 12fff822840b259fb6c7ea13035abf69382f7935..45a85d95a65f7322470d49edbb08bc738401f630 100644 --- a/core/modules/block/lib/Drupal/block/BlockRenderController.php +++ b/core/modules/block/lib/Drupal/block/BlockRenderController.php @@ -36,7 +36,25 @@ public function view(EntityInterface $entity, $view_mode = 'full', $langcode = N public function viewMultiple(array $entities = array(), $view_mode = 'full', $langcode = NULL) { $build = array(); foreach ($entities as $entity_id => $entity) { - $build[$entity_id] = $entity->getPlugin()->build(); + $plugin = $entity->getPlugin(); + $plugin_id = $plugin->getPluginId(); + + if ($content = $plugin->build()) { + $configuration = $plugin->getConfig(); + $build[$entity_id] = array( + '#theme' => 'block', + 'content' => $content, + '#configuration' => $configuration, + '#plugin_id' => $plugin_id, + ); + $build[$entity_id]['#configuration']['label'] = check_plain($configuration['label']); + } + else { + $build[$entity_id] = array(); + } + + list($base_id) = explode(':', $plugin_id); + drupal_alter(array('block_view', "block_view_$base_id"), $build[$entity_id], $plugin); // @todo Remove after fixing http://drupal.org/node/1989568. $build[$entity_id]['#block'] = $entity; diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockInterfaceTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockInterfaceTest.php index 58ff0c2d4fe8472592213a76011871459ccfbcb0..e71a14602c11a22ab7225398006430c7e7b3c763 100644 --- a/core/modules/block/lib/Drupal/block/Tests/BlockInterfaceTest.php +++ b/core/modules/block/lib/Drupal/block/Tests/BlockInterfaceTest.php @@ -92,18 +92,7 @@ public function testBlockInterface() { $this->assertIdentical($display_block->form(array(), $form_state), $expected_form, 'Only the expected form elements were present.'); $expected_build = array( - '#theme' => 'block', - 'content' => array( - '#children' => 'My custom display message.', - ), - '#configuration' => array( - 'label' => 'Custom Display Message', - 'display_message' => 'My custom display message.', - 'module' => 'block_test', - 'label_display' => BLOCK_LABEL_VISIBLE, - 'cache' => DRUPAL_NO_CACHE, - ), - '#plugin_id' => 'test_block_instantiation', + '#children' => 'My custom display message.', ); // Ensure the build array is proper. $this->assertIdentical($display_block->build(), $expected_build, 'The plugin returned the appropriate build array.'); diff --git a/core/modules/block/tests/lib/Drupal/block_test/Plugin/Block/TestBlockInstantiation.php b/core/modules/block/tests/lib/Drupal/block_test/Plugin/Block/TestBlockInstantiation.php index ba45a4e3dbd7905228358d1bedf5b93a4bbb878a..4c286383aa82c7c3f8e5267742f864840884dec2 100644 --- a/core/modules/block/tests/lib/Drupal/block_test/Plugin/Block/TestBlockInstantiation.php +++ b/core/modules/block/tests/lib/Drupal/block_test/Plugin/Block/TestBlockInstantiation.php @@ -60,7 +60,7 @@ public function blockSubmit($form, &$form_state) { /** * {@inheritdoc} */ - protected function blockBuild() { + public function build() { return array( '#children' => $this->configuration['display_message'], ); diff --git a/core/modules/block/tests/lib/Drupal/block_test/Plugin/Block/TestCacheBlock.php b/core/modules/block/tests/lib/Drupal/block_test/Plugin/Block/TestCacheBlock.php index 1bde917bc201538b12bb3dc71fcc1e5fb822ab5f..c83d668079fa2c4422fe9c2518091815e421939e 100644 --- a/core/modules/block/tests/lib/Drupal/block_test/Plugin/Block/TestCacheBlock.php +++ b/core/modules/block/tests/lib/Drupal/block_test/Plugin/Block/TestCacheBlock.php @@ -34,9 +34,9 @@ public function settings() { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { return array( '#children' => \Drupal::state()->get('block_test.content'), ); diff --git a/core/modules/book/lib/Drupal/book/Plugin/Block/BookNavigationBlock.php b/core/modules/book/lib/Drupal/book/Plugin/Block/BookNavigationBlock.php index 7461aa7ed4f75ffebd402ca077d9486c345d8810..fd48f7d23529d60fbfae35b4794c464fae1836ea 100644 --- a/core/modules/book/lib/Drupal/book/Plugin/Block/BookNavigationBlock.php +++ b/core/modules/book/lib/Drupal/book/Plugin/Block/BookNavigationBlock.php @@ -59,9 +59,9 @@ public function blockSubmit($form, &$form_state) { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { $current_bid = 0; if ($node = menu_get_object()) { $current_bid = empty($node->book['bid']) ? 0 : $node->book['bid']; diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Block/RecentCommentsBlock.php b/core/modules/comment/lib/Drupal/comment/Plugin/Block/RecentCommentsBlock.php index 387f7ceaed3683052408bca7b3e70aac61a3bfee..cf442db9f34f8d5c28609ef7b99c1a9e4e97df08 100644 --- a/core/modules/comment/lib/Drupal/comment/Plugin/Block/RecentCommentsBlock.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/Block/RecentCommentsBlock.php @@ -59,9 +59,9 @@ public function blockSubmit($form, &$form_state) { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { return array( '#theme' => 'comment_block', '#number' => $this->configuration['block_count'], diff --git a/core/modules/forum/forum.module b/core/modules/forum/forum.module index c5af0f4d63e3c55043ae1c7ffed750396add140c..c32816c34da62f49b25e57367026651371d476bc 100644 --- a/core/modules/forum/forum.module +++ b/core/modules/forum/forum.module @@ -652,8 +652,8 @@ function forum_form_node_form_alter(&$form, &$form_state, $form_id) { * * This function can be used as a #pre_render callback. * - * @see \Drupal\forum\Plugin\block\block\NewTopicsBlock::blockBuild() - * @see \Drupal\forum\Plugin\block\block\ActiveTopicsBlock::blockBuild() + * @see \Drupal\forum\Plugin\block\block\NewTopicsBlock::build() + * @see \Drupal\forum\Plugin\block\block\ActiveTopicsBlock::build() */ function forum_block_view_pre_render($elements) { $result = $elements['#query']->execute(); diff --git a/core/modules/forum/lib/Drupal/forum/Plugin/Block/ActiveTopicsBlock.php b/core/modules/forum/lib/Drupal/forum/Plugin/Block/ActiveTopicsBlock.php index b522d65924c490c08ee053e2e738022e2aeee214..176fa1429e931158081250574c3caecf9fed77e1 100644 --- a/core/modules/forum/lib/Drupal/forum/Plugin/Block/ActiveTopicsBlock.php +++ b/core/modules/forum/lib/Drupal/forum/Plugin/Block/ActiveTopicsBlock.php @@ -22,9 +22,9 @@ class ActiveTopicsBlock extends ForumBlockBase { /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { $query = db_select('forum_index', 'f') ->fields('f') ->addTag('node_access') diff --git a/core/modules/forum/lib/Drupal/forum/Plugin/Block/NewTopicsBlock.php b/core/modules/forum/lib/Drupal/forum/Plugin/Block/NewTopicsBlock.php index 4e854824b4c793baaa5d565a59e3f428cb288e55..02f46507d49af0e08ac3419274813b768d4bf071 100644 --- a/core/modules/forum/lib/Drupal/forum/Plugin/Block/NewTopicsBlock.php +++ b/core/modules/forum/lib/Drupal/forum/Plugin/Block/NewTopicsBlock.php @@ -22,9 +22,9 @@ class NewTopicsBlock extends ForumBlockBase { /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { $query = db_select('forum_index', 'f') ->fields('f') ->addTag('node_access') diff --git a/core/modules/language/lib/Drupal/language/Plugin/Block/LanguageBlock.php b/core/modules/language/lib/Drupal/language/Plugin/Block/LanguageBlock.php index 4ab3bfd444c775348a3cd397c287510fcbebdf57..95a9d125e2cdf50f3516c6445e4500867450c0ef 100644 --- a/core/modules/language/lib/Drupal/language/Plugin/Block/LanguageBlock.php +++ b/core/modules/language/lib/Drupal/language/Plugin/Block/LanguageBlock.php @@ -31,9 +31,9 @@ function access() { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { $build = array(); $path = drupal_is_front_page() ? '' : current_path(); list($plugin_id, $type) = explode(':', $this->getPluginId()); diff --git a/core/modules/menu/lib/Drupal/menu/Plugin/Block/MenuBlock.php b/core/modules/menu/lib/Drupal/menu/Plugin/Block/MenuBlock.php index 86dcd07f3f230853cc31b8722149b201c19cd529..0e837342e39a1d5b42b59e3d5854a3a433592ae1 100644 --- a/core/modules/menu/lib/Drupal/menu/Plugin/Block/MenuBlock.php +++ b/core/modules/menu/lib/Drupal/menu/Plugin/Block/MenuBlock.php @@ -24,9 +24,9 @@ class MenuBlock extends SystemMenuBlock { /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { list($plugin, $menu) = explode(':', $this->getPluginId()); return menu_tree($menu); } diff --git a/core/modules/node/lib/Drupal/node/Plugin/Block/RecentContentBlock.php b/core/modules/node/lib/Drupal/node/Plugin/Block/RecentContentBlock.php index 3712bff03c9c5c1ddbd0bfe428c0e122880d33dd..81441610dadd0b697bd920fdfc4ef480915bdc8b 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/Block/RecentContentBlock.php +++ b/core/modules/node/lib/Drupal/node/Plugin/Block/RecentContentBlock.php @@ -59,9 +59,9 @@ public function blockSubmit($form, &$form_state) { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { if ($nodes = node_get_recent($this->configuration['block_count'])) { return array( '#theme' => 'node_recent_block', diff --git a/core/modules/node/lib/Drupal/node/Plugin/Block/SyndicateBlock.php b/core/modules/node/lib/Drupal/node/Plugin/Block/SyndicateBlock.php index 56b3a19591b20390bd0bdcb837681e8f653e9d00..1440a48efee3da30b7c619c865cc47b7e326eb72 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/Block/SyndicateBlock.php +++ b/core/modules/node/lib/Drupal/node/Plugin/Block/SyndicateBlock.php @@ -39,9 +39,9 @@ public function access() { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { return array( '#theme' => 'feed_icon', '#url' => 'rss.xml', diff --git a/core/modules/search/lib/Drupal/search/Plugin/Block/SearchBlock.php b/core/modules/search/lib/Drupal/search/Plugin/Block/SearchBlock.php index 1afbfae06f8e32d1c6a1def07c32b97b742646e2..00f5b6003815cba6106d003a1c065f4d2e31c003 100644 --- a/core/modules/search/lib/Drupal/search/Plugin/Block/SearchBlock.php +++ b/core/modules/search/lib/Drupal/search/Plugin/Block/SearchBlock.php @@ -30,9 +30,9 @@ public function access() { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { return array(drupal_get_form('search_block_form')); } diff --git a/core/modules/shortcut/lib/Drupal/shortcut/Plugin/Block/ShortcutsBlock.php b/core/modules/shortcut/lib/Drupal/shortcut/Plugin/Block/ShortcutsBlock.php index ff89f5020c69a7f9da21755d1098f956bf12833b..52969713bfe8e2596259f5234ded9ddf2ddf8869 100644 --- a/core/modules/shortcut/lib/Drupal/shortcut/Plugin/Block/ShortcutsBlock.php +++ b/core/modules/shortcut/lib/Drupal/shortcut/Plugin/Block/ShortcutsBlock.php @@ -23,9 +23,9 @@ class ShortcutsBlock extends BlockBase { /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { return array( shortcut_renderable_links(shortcut_current_displayed_set()), ); diff --git a/core/modules/statistics/lib/Drupal/statistics/Plugin/Block/StatisticsPopularBlock.php b/core/modules/statistics/lib/Drupal/statistics/Plugin/Block/StatisticsPopularBlock.php index 6eebb8376b7e667b718d4c3118940f35371e824d..d11412ece44f53327ff04cb931f0b85e9f1a71fa 100644 --- a/core/modules/statistics/lib/Drupal/statistics/Plugin/Block/StatisticsPopularBlock.php +++ b/core/modules/statistics/lib/Drupal/statistics/Plugin/Block/StatisticsPopularBlock.php @@ -116,9 +116,9 @@ public function blockSubmit($form, &$form_state) { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { $content = array(); if ($this->day_list) { diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemHelpBlock.php b/core/modules/system/lib/Drupal/system/Plugin/Block/SystemHelpBlock.php index a370374789b5d07ba5478a09fb0e1aa884db1d87..c19a57560a8b14bd746e37d8a391f1392ce61bc4 100644 --- a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemHelpBlock.php +++ b/core/modules/system/lib/Drupal/system/Plugin/Block/SystemHelpBlock.php @@ -38,9 +38,9 @@ public function access() { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { return array( '#children' => $this->help, ); diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemMainBlock.php b/core/modules/system/lib/Drupal/system/Plugin/Block/SystemMainBlock.php index db1865172574c813d084e339af1dad208bc3a4c4..997d5637cfa34d11c71f3124cedb1236d3947c2a 100644 --- a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemMainBlock.php +++ b/core/modules/system/lib/Drupal/system/Plugin/Block/SystemMainBlock.php @@ -23,9 +23,9 @@ class SystemMainBlock extends BlockBase { /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { return array( drupal_set_page_content() ); diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemMenuBlock.php b/core/modules/system/lib/Drupal/system/Plugin/Block/SystemMenuBlock.php index 847249e0fbf8dd4866d9df4a195cbbfe0604edd0..8e7879e363092b1bfe9391022f58cc5f53d8fc25 100644 --- a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemMenuBlock.php +++ b/core/modules/system/lib/Drupal/system/Plugin/Block/SystemMenuBlock.php @@ -33,9 +33,9 @@ public function access() { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { list($plugin, $derivative) = explode(':', $this->getPluginId()); // Derivatives are prefixed with 'menu-'. $menu = substr($derivative, 5); diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemPoweredByBlock.php b/core/modules/system/lib/Drupal/system/Plugin/Block/SystemPoweredByBlock.php index 3969710babdfbfeaae9d52a7481648db5a22f5c4..7edd34bad1a0220027070bc9510baa0f5b363760 100644 --- a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemPoweredByBlock.php +++ b/core/modules/system/lib/Drupal/system/Plugin/Block/SystemPoweredByBlock.php @@ -23,9 +23,9 @@ class SystemPoweredByBlock extends BlockBase { /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { return array( '#children' => theme('system_powered_by'), ); diff --git a/core/modules/user/lib/Drupal/user/Plugin/Block/UserLoginBlock.php b/core/modules/user/lib/Drupal/user/Plugin/Block/UserLoginBlock.php index dd890bdf17130973d69eaacb8d379678b09ef899..0c8aa2a4e10bea9e3aac943520bbd17a391348e6 100644 --- a/core/modules/user/lib/Drupal/user/Plugin/Block/UserLoginBlock.php +++ b/core/modules/user/lib/Drupal/user/Plugin/Block/UserLoginBlock.php @@ -30,9 +30,9 @@ public function access() { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { $form = drupal_get_form('user_login_form'); unset($form['name']['#attributes']['autofocus']); unset($form['name']['#description']); diff --git a/core/modules/user/lib/Drupal/user/Plugin/Block/UserNewBlock.php b/core/modules/user/lib/Drupal/user/Plugin/Block/UserNewBlock.php index 41c2a437e330fb8a1e50aaffbe2e231c2b05b21b..847512acf350e97ac1b289dbb7cf0eeae12a669f 100644 --- a/core/modules/user/lib/Drupal/user/Plugin/Block/UserNewBlock.php +++ b/core/modules/user/lib/Drupal/user/Plugin/Block/UserNewBlock.php @@ -62,9 +62,9 @@ public function blockSubmit($form, &$form_state) { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { // Retrieve a list of new users who have accessed the site successfully. $items = db_query_range('SELECT uid, name FROM {users} WHERE status <> 0 AND access <> 0 ORDER BY created DESC', 0, $this->configuration['whois_new_count'])->fetchAll(); $build = array( diff --git a/core/modules/user/lib/Drupal/user/Plugin/Block/UserOnlineBlock.php b/core/modules/user/lib/Drupal/user/Plugin/Block/UserOnlineBlock.php index fbae351f55cc01bb1c37a3bb1e5fdca5aa79316c..f2452c9d58e6b2a7e8f95baa30e7de1f8cd74494 100644 --- a/core/modules/user/lib/Drupal/user/Plugin/Block/UserOnlineBlock.php +++ b/core/modules/user/lib/Drupal/user/Plugin/Block/UserOnlineBlock.php @@ -76,9 +76,9 @@ public function blockSubmit($form, &$form_state) { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { // Count users active within the defined period. $interval = REQUEST_TIME - $this->configuration['seconds_online']; diff --git a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlock.php b/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlock.php index 5b82a7bc44085e55f3e608822cf73126e8af430d..e9af634ef66a5176464deed76b01d7a22f002cd1 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlock.php +++ b/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlock.php @@ -69,9 +69,9 @@ public function form($form, &$form_state) { } /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { if ($output = $this->view->executeDisplay($this->displayID)) { $output = $this->view->executeDisplay($this->displayID); // Set the label to the title configured in the view. diff --git a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsExposedFilterBlock.php b/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsExposedFilterBlock.php index 21d3578f53cbbb34712a713ffc83ab3c88971fe9..577caa55f6d6067e9ba878ad9ff01f4f34a33040 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsExposedFilterBlock.php +++ b/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsExposedFilterBlock.php @@ -23,9 +23,9 @@ class ViewsExposedFilterBlock extends ViewsBlock { /** - * Implements \Drupal\block\BlockBase::blockBuild(). + * {@inheritdoc} */ - protected function blockBuild() { + public function build() { $output = $this->view->display_handler->viewExposedFormBlocks(); // Before returning the block output, convert it to a renderable array with // contextual links.