diff --git a/core/modules/aggregator/aggregator.install b/core/modules/aggregator/aggregator.install index 018d9d1..f891444 100644 --- a/core/modules/aggregator/aggregator.install +++ b/core/modules/aggregator/aggregator.install @@ -200,13 +200,6 @@ function aggregator_schema() { 'default' => 0, 'description' => 'When the feed was last modified, as a Unix timestamp.', ), - 'block' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - 'description' => "Number of items to display in the feed's block.", - ) ), 'primary key' => array('fid'), 'indexes' => array( diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php b/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php index b6a2d84..edb45db 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php @@ -105,7 +105,6 @@ public function feedAdd() { ->getStorageController('aggregator_feed') ->create(array( 'refresh' => 3600, - 'block' => 5, )); return $this->entityManager->getForm($feed); } @@ -145,7 +144,7 @@ public function feedRefresh(FeedInterface $aggregator_feed, Request $request) { * A render array as expected by drupal_render(). */ public function adminOverview() { - $result = $this->database->query('SELECT f.fid, f.title, f.url, f.refresh, f.checked, f.link, f.description, f.hash, f.etag, f.modified, f.image, f.block, COUNT(i.iid) AS items FROM {aggregator_feed} f LEFT JOIN {aggregator_item} i ON f.fid = i.fid GROUP BY f.fid, f.title, f.url, f.refresh, f.checked, f.link, f.description, f.hash, f.etag, f.modified, f.image, f.block ORDER BY f.title'); + $result = $this->database->query('SELECT f.fid, f.title, f.url, f.refresh, f.checked, f.link, f.description, f.hash, f.etag, f.modified, f.image, COUNT(i.iid) AS items FROM {aggregator_feed} f LEFT JOIN {aggregator_item} i ON f.fid = i.fid GROUP BY f.fid, f.title, f.url, f.refresh, f.checked, f.link, f.description, f.hash, f.etag, f.modified, f.image ORDER BY f.title'); $header = array(t('Title'), t('Items'), t('Last update'), t('Next update'), t('Operations')); $rows = array(); diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Entity/Feed.php b/core/modules/aggregator/lib/Drupal/aggregator/Entity/Feed.php index 610d474..bacdb9a 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Entity/Feed.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Entity/Feed.php @@ -135,13 +135,6 @@ class Feed extends EntityNG implements FeedInterface { public $modified; /** - * Number of items to display in the feed’s block. - * - * @var \Drupal\Core\Entity\Field\FieldInterface - */ - public $block; - - /** * Overrides Drupal\Core\Entity\EntityNG::init(). */ public function init() { @@ -160,7 +153,6 @@ public function init() { unset($this->hash); unset($this->etag); unset($this->modified); - unset($this->block); } /** @@ -208,10 +200,6 @@ public static function preCreate(EntityStorageControllerInterface $storage_contr * {@inheritdoc} */ public static function preDelete(EntityStorageControllerInterface $storage_controller, array $entities) { - // Invalidate the block cache to update aggregator feed-based derivatives. - if (\Drupal::moduleHandler()->moduleExists('block')) { - \Drupal::service('plugin.manager.block')->clearCachedDefinitions(); - } $storage_controller->deleteCategories($entities); foreach ($entities as $entity) { // Notify processors to remove stored items. @@ -226,14 +214,15 @@ public static function preDelete(EntityStorageControllerInterface $storage_contr * {@inheritdoc} */ public static function postDelete(EntityStorageControllerInterface $storage_controller, array $entities) { - foreach ($entities as $entity) { - // Make sure there is no active block for this feed. - $block_configs = config_get_storage_names_with_prefix('plugin.core.block'); - foreach ($block_configs as $config_id) { - $config = \Drupal::config($config_id); - if ($config->get('id') == 'aggregator_feed_block:' . $entity->id()) { - $config->delete(); - } + if (\Drupal::moduleHandler()->moduleExists('block')) { + // Make sure there are no active blocks for these feeds. + $ids = \Drupal::entityQuery('block') + ->condition('plugin', 'aggregator_feed_block') + ->condition('settings.feed', array_keys($entities)) + ->execute(); + if ($ids) { + $block_storage = \Drupal::entityManager()->getStorageController('block'); + $block_storage->delete($block_storage->loadMultiple($ids)); } } } @@ -242,7 +231,6 @@ public static function postDelete(EntityStorageControllerInterface $storage_cont * {@inheritdoc} */ public function preSave(EntityStorageControllerInterface $storage_controller) { - $this->clearBlockCacheDefinitions(); $storage_controller->deleteCategories(array($this->id() => $this)); } @@ -256,15 +244,6 @@ public function postSave(EntityStorageControllerInterface $storage_controller, $ } /** - * Invalidate the block cache to update aggregator feed-based derivatives. - */ - protected function clearBlockCacheDefinitions() { - if ($block_manager = \Drupal::getContainer()->get('plugin.manager.block', Container::NULL_ON_INVALID_REFERENCE)) { - $block_manager->clearCachedDefinitions(); - } - } - - /** * {@inheritdoc} */ public static function baseFieldDefinitions($entity_type) { @@ -334,11 +313,6 @@ public static function baseFieldDefinitions($entity_type) { 'description' => t('When the feed was last modified, as a Unix timestamp.'), 'type' => 'integer_field', ); - $fields['block'] = array( - 'label' => t('Block'), - 'description' => t('Number of items to display in the feed’s block.'), - 'type' => 'integer_field', - ); return $fields; } diff --git a/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php b/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php index 577aefc..3ba86ac 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php @@ -54,12 +54,6 @@ public function form(array $form, array &$form_state) { '#options' => $period, '#description' => $this->t('The length of time between feed updates. Requires a correctly configured cron maintenance task.', array('@cron' => url('admin/reports/status'))), ); - $form['block'] = array('#type' => 'select', - '#title' => $this->t('News items in block'), - '#default_value' => $feed->block->value, - '#options' => drupal_map_assoc(array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20)), - '#description' => $this->t("Drupal can make a block with the most recent news items of this feed. You can configure blocks to be displayed in the sidebar of your page. This setting lets you configure the number of news items to show in this feed's block. If you choose '0' this feed's block will be disabled.", array('@block-admin' => url('admin/structure/block'))), - ); // Handling of categories. $options = array(); diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Form/OpmlFeedAdd.php b/core/modules/aggregator/lib/Drupal/aggregator/Form/OpmlFeedAdd.php index 15dabe3..21e6499 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Form/OpmlFeedAdd.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Form/OpmlFeedAdd.php @@ -113,13 +113,6 @@ public function buildForm(array $form, array &$form_state) { '#options' => $period, '#description' => $this->t('The length of time between feed updates. Requires a correctly configured cron maintenance task.', array('@cron' => url('admin/reports/status'))), ); - $form['block'] = array( - '#type' => 'select', - '#title' => $this->t('News items in block'), - '#default_value' => 5, - '#options' => drupal_map_assoc(array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20)), - '#description' => $this->t("Drupal can make a block with the most recent news items of a feed. You can configure blocks to be displayed in the sidebar of your page. This setting lets you configure the number of news items to show in a feed's block. If you choose '0' these feeds' blocks will be disabled.", array('@block-admin' => url('admin/structure/block'))), - ); // Handling of categories. $options = array_map('check_plain', $this->database->query("SELECT cid, title FROM {aggregator_category} ORDER BY title")->fetchAllKeyed()); @@ -215,7 +208,6 @@ public function submitForm(array &$form, array &$form_state) { 'title' => $feed['title'], 'url' => $feed['url'], 'refresh' => $form_state['values']['refresh'], - 'block' => $form_state['values']['block'], )); $new_feed->categories = $form_state['values']['category']; $new_feed->save(); 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 b174e29..8d27f3f 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php @@ -16,18 +16,55 @@ * * @Block( * id = "aggregator_category_block", - * admin_label = @Translation("Aggregator category"), - * derivative = "Drupal\aggregator\Plugin\Derivative\AggregatorCategoryBlock" + * admin_label = @Translation("Aggregator category") * ) */ class AggregatorCategoryBlock extends BlockBase { /** + * The database connection. + * + * @var \Drupal\Core\Database\Connection + */ + protected $connection; + + /** + * Constructs an AggregatorFeedBlock object. + * + * @param array $configuration + * A configuration array containing information about the plugin instance. + * @param string $plugin_id + * The plugin_id for the plugin instance. + * @param array $plugin_definition + * The plugin implementation definition. + * @param \Drupal\Core\Database\Connection $connection + * The database connection. + */ + public function __construct(array $configuration, $plugin_id, array $plugin_definition, Connection $connection) { + parent::__construct($configuration, $plugin_id, $plugin_definition); + $this->connection = $connection; + } + + + /** + * {@inheritdoc} + */ + public static function create(ContainerInterface $container, array $configuration, $plugin_id, array $plugin_definition) { + return new static( + $configuration, + $plugin_id, + $plugin_definition, + $container->get('database') + ); + } + + /** * Overrides \Drupal\block\BlockBase::settings(). */ public function settings() { // By default, the block will contain 10 feed items. return array( + 'cid' => 0, 'block_count' => 10, ); } @@ -44,6 +81,18 @@ public function access() { * Overrides \Drupal\block\BlockBase::blockForm(). */ public function blockForm($form, &$form_state) { + $result = $this->connection->query('SELECT cid, title FROM {aggregator_category} ORDER BY title'); + $options = array(); + foreach ($result as $category) { + $options[$category->cid] = check_plain($category->title); + } + + $form['cid'] = array( + '#type' => 'select', + '#title' => t('Select the category that should be displayed'), + '#default_value' => $this->configuration['cid'], + '#options' => $options, + ); $form['block_count'] = array( '#type' => 'select', '#title' => t('Number of news items in block'), @@ -57,6 +106,7 @@ public function blockForm($form, &$form_state) { * Overrides \Drupal\block\BlockBase::blockSubmit(). */ public function blockSubmit($form, &$form_state) { + $this->configuration['cid'] = $form_state['values']['cid']; $this->configuration['block_count'] = $form_state['values']['block_count']; } @@ -64,9 +114,9 @@ public function blockSubmit($form, &$form_state) { * {@inheritdoc} */ 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)); + $cid = $this->configuration['cid']; + if ($category = aggregator_category_load($cid)) { + $result = $this->connection->queryRange('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)); $more_link = array( '#theme' => 'more_link', '#url' => 'aggregator/categories/' . $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 ca75c64..bae1759 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php @@ -10,17 +10,69 @@ use Drupal\block\BlockBase; use Drupal\block\Annotation\Block; use Drupal\Core\Annotation\Translation; +use Drupal\Core\Database\Connection; +use Drupal\Core\Entity\EntityStorageControllerInterface; +use Drupal\Core\Plugin\ContainerFactoryPluginInterface; +use Symfony\Component\DependencyInjection\ContainerInterface; /** * Provides an 'Aggregator feed' block with the latest items from the feed. * * @Block( * id = "aggregator_feed_block", - * admin_label = @Translation("Aggregator feed"), - * derivative = "Drupal\aggregator\Plugin\Derivative\AggregatorFeedBlock" + * admin_label = @Translation("Aggregator feed") * ) */ -class AggregatorFeedBlock extends BlockBase { +class AggregatorFeedBlock extends BlockBase implements ContainerFactoryPluginInterface { + + /** + * The entity storage controller for feeds. + * + * @var \Drupal\Core\Entity\EntityStorageControllerInterface + */ + protected $storageController; + + /** + * The database connection. + * + * @var \Drupal\Core\Database\Connection + */ + protected $connection; + + /** + * Constructs an AggregatorFeedBlock object. + * + * @param array $configuration + * A configuration array containing information about the plugin instance. + * @param string $plugin_id + * The plugin_id for the plugin instance. + * @param array $plugin_definition + * The plugin implementation definition. + * @param \Drupal\Core\Entity\EntityStorageControllerInterface $storage_controller + * The entity storage controller for feeds. + * @param \Drupal\Core\Database\Connection $connection + * The database connection. + */ + public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityStorageControllerInterface $storage_controller, Connection $connection) { + parent::__construct($configuration, $plugin_id, $plugin_definition); + $this->storageController = $storage_controller; + $this->connection = $connection; + } + + + /** + * {@inheritdoc} + */ + public static function create(ContainerInterface $container, array $configuration, $plugin_id, array $plugin_definition) { + return new static( + $configuration, + $plugin_id, + $plugin_definition, + $container->get('plugin.manager.entity')->getStorageController('aggregator_feed'), + $container->get('database') + ); + } + /** * Overrides \Drupal\block\BlockBase::settings(). @@ -29,6 +81,7 @@ public function settings() { // By default, the block will contain 10 feed items. return array( 'block_count' => 10, + 'feed' => NULL, ); } @@ -44,6 +97,17 @@ public function access() { * Overrides \Drupal\block\BlockBase::blockForm(). */ public function blockForm($form, &$form_state) { + $feeds = $this->storageController->loadMultiple(); + $options = array(); + foreach ($feeds as $feed) { + $options[$feed->id()] = $feed->label(); + } + $form['feed'] = array( + '#type' => 'select', + '#title' => t('Select the feed that should be displayed'), + '#default_value' => $this->configuration['feed'], + '#options' => $options, + ); $form['block_count'] = array( '#type' => 'select', '#title' => t('Number of news items in block'), @@ -58,19 +122,19 @@ public function blockForm($form, &$form_state) { */ public function blockSubmit($form, &$form_state) { $this->configuration['block_count'] = $form_state['values']['block_count']; + $this->configuration['feed'] = $form_state['values']['feed']; } /** * {@inheritdoc} */ 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()) { - $result = db_query_range("SELECT * FROM {aggregator_item} WHERE fid = :fid ORDER BY timestamp DESC, iid DESC", 0, $this->configuration['block_count'], array(':fid' => $id)); + // Load the selected feed. + if ($feed = $this->storageController->load($this->configuration['feed'])) { + $result = $this->connection->queryRange("SELECT * FROM {aggregator_item} WHERE fid = :fid ORDER BY timestamp DESC, iid DESC", 0, $this->configuration['block_count'], array(':fid' => $feed->id())); $more_link = array( '#theme' => 'more_link', - '#url' => 'aggregator/sources/' . $feed->fid, + '#url' => 'aggregator/sources/' . $feed->id(), '#title' => t("View this feed's recent news."), ); $read_more = drupal_render($more_link); @@ -91,6 +155,7 @@ public function build() { return array( '#children' => drupal_render($item_list) . $read_more, ); + return $build; } } } diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Derivative/AggregatorCategoryBlock.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Derivative/AggregatorCategoryBlock.php deleted file mode 100644 index 8f096fb..0000000 --- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Derivative/AggregatorCategoryBlock.php +++ /dev/null @@ -1,103 +0,0 @@ -basePluginId = $base_plugin_id; - $this->connection = $connection; - $this->translationManager = $translation_manager; - } - - /** - * {@inheritdoc} - */ - public static function create(ContainerInterface $container, $base_plugin_id) { - return new static( - $base_plugin_id, - $container->get('database'), - $container->get('string_translation') - ); - } - - /** - * Implements \Drupal\Component\Plugin\Derivative\DerivativeInterface::getDerivativeDefinition(). - */ - public function getDerivativeDefinition($derivative_id, array $base_plugin_definition) { - if (!empty($this->derivatives) && !empty($this->derivatives[$derivative_id])) { - return $this->derivatives[$derivative_id]; - } - $result = $this->connection->query('SELECT cid, title FROM {aggregator_category} ORDER BY title WHERE cid = :cid', array(':cid' => $derivative_id))->fetchObject(); - $this->derivatives[$derivative_id] = $base_plugin_definition; - $this->derivatives[$derivative_id]['admin_label'] = $this->translationManager->translate('@title category latest items', array('@title' => $result->title)); - return $this->derivatives[$derivative_id]; - } - - /** - * Implements \Drupal\Component\Plugin\Derivative\DerivativeInterface::getDerivativeDefinitions(). - */ - public function getDerivativeDefinitions(array $base_plugin_definition) { - // Provide a block plugin definition for each aggregator category. - $result = $this->connection->query('SELECT cid, title FROM {aggregator_category} ORDER BY title'); - foreach ($result as $category) { - $this->derivatives[$category->cid] = $base_plugin_definition; - $this->derivatives[$category->cid]['admin_label'] = $this->translationManager->translate('@title category latest items', array('@title' => $category->title)); - } - return $this->derivatives; - } - -} diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Derivative/AggregatorFeedBlock.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Derivative/AggregatorFeedBlock.php deleted file mode 100644 index 663bf5f..0000000 --- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Derivative/AggregatorFeedBlock.php +++ /dev/null @@ -1,54 +0,0 @@ -derivatives) && !empty($this->derivatives[$derivative_id])) { - return $this->derivatives[$derivative_id]; - } - $result = db_query('SELECT fid, title, block FROM {aggregator_feed} WHERE block <> 0 AND fid = :fid', array(':fid' => $derivative_id))->fetchObject(); - $this->derivatives[$derivative_id] = $base_plugin_definition; - $this->derivatives[$derivative_id]['delta'] = $result->fid; - $this->derivatives[$derivative_id]['admin_label'] = t('@title feed latest items', array('@title' => $result->title)); - return $this->derivatives[$derivative_id]; - } - - /** - * Implements \Drupal\Component\Plugin\Derivative\DerivativeInterface::getDerivativeDefinitions(). - */ - public function getDerivativeDefinitions(array $base_plugin_definition) { - // Add a block plugin definition for each feed. - $result = db_query('SELECT fid, title FROM {aggregator_feed} WHERE block <> 0 ORDER BY fid'); - foreach ($result as $feed) { - $this->derivatives[$feed->fid] = $base_plugin_definition; - $this->derivatives[$feed->fid]['delta'] = $feed->fid; - $this->derivatives[$feed->fid]['admin_label'] = t('@title feed latest items', array('@title' => $feed->title)); - } - return $this->derivatives; - } - -} diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php index 8d50401..84b38ed 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php @@ -40,9 +40,6 @@ public function testBlockLinks() { $feed = $this->createFeed(); $this->updateFeedItems($feed, $this->getDefaultFeedItemCount()); - // Clear the block cache to load the new block definitions. - $this->container->get('plugin.manager.block')->clearCachedDefinitions(); - // Need admin user to be able to access block admin. $admin_user = $this->drupalCreateUser(array( 'administer blocks', @@ -52,7 +49,12 @@ public function testBlockLinks() { )); $this->drupalLogin($admin_user); - $block = $this->drupalPlaceBlock("aggregator_feed_block:{$feed->id()}", array('label' => 'feed-' . $feed->label(), 'block_count' => 2)); + $block = $this->drupalPlaceBlock("aggregator_feed_block", array('label' => 'feed-' . $feed->label())); + + // Configure the feed that should be displayed. + $block->getPlugin()->setConfigurationValue('feed', $feed->id()); + $block->getPlugin()->setConfigurationValue('block_count', 2); + $block->save(); // Confirm that the block is now being displayed on pages. $this->drupalGet('test-page'); @@ -70,8 +72,8 @@ public function testBlockLinks() { // Set the number of news items to 0 to test that the block does not show // up. - $feed->block = 0; - $feed->save(); + $block->getPlugin()->setConfigurationValue('block_count', 0); + $block->save(); // Check that the block is no longer displayed. $this->drupalGet('test-page'); $this->assertNoText($block->label(), 'Feed block is not displayed on the page when number of items is set to 0.'); diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedTest.php index 569f26a..2868c7f 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedTest.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedTest.php @@ -37,7 +37,7 @@ function testCategorizeFeed() { $categories = $this->getCategories(); // Create a feed and assign 2 categories to it. - $feed = $this->getFeedEditObject(NULL, array('block' => 5)); + $feed = $this->getFeedEditObject(); foreach ($categories as $cid => $category) { $feed->categories[$cid] = $cid; } diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedTest.php index f16665d..d827be8 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedTest.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedTest.php @@ -11,6 +11,14 @@ * Tests functionality for removing feeds in the Aggregator module. */ class RemoveFeedTest extends AggregatorTestBase { + + /** + * Modules to enable. + * + * @var array + */ + public static $modules = array('block'); + public static function getInfo() { return array( 'name' => 'Remove feed functionality', @@ -23,17 +31,31 @@ public static function getInfo() { * Removes a feed and ensures that all of its services are removed. */ function testRemoveFeed() { - $feed = $this->createFeed(); + $feed1 = $this->createFeed(); + $feed2 = $this->createFeed(); + + // Place a block for both feeds. + $block = $this->drupalPlaceBlock('aggregator_feed_block'); + $block->getPlugin()->setConfigurationValue('feed', $feed1->id()); + $block->save(); + $block2 = $this->drupalPlaceBlock('aggregator_feed_block'); + $block2->getPlugin()->setConfigurationValue('feed', $feed2->id()); + $block2->save(); // Delete feed. - $this->deleteFeed($feed); + $this->deleteFeed($feed1); + $this->assertText($feed2->label()); + $block_storage = $this->container->get('entity.manager')->getStorageController('block'); + $this->assertNull($block_storage->load($block->id()), 'Block for the deleted feed was deleted.'); + $this->assertEqual($block2->id(), $block_storage->load($block2->id())->id(), 'Block for not deleted feed still exists.'); // Check feed source. - $this->drupalGet('aggregator/sources/' . $feed->id()); + $this->drupalGet('aggregator/sources/' . $feed1->id()); $this->assertResponse(404, 'Deleted feed source does not exists.'); // Check database for feed. - $result = db_query("SELECT COUNT(*) FROM {aggregator_feed} WHERE title = :title AND url = :url", array(':title' => $feed->label(), ':url' => $feed->url->value))->fetchField(); + $result = db_query("SELECT COUNT(*) FROM {aggregator_feed} WHERE title = :title AND url = :url", array(':title' => $feed1->label(), ':url' => $feed1->url->value))->fetchField(); $this->assertFalse($result, 'Feed not found in database'); } + } diff --git a/core/modules/block/block.module b/core/modules/block/block.module index a08254a..89cf001 100644 --- a/core/modules/block/block.module +++ b/core/modules/block/block.module @@ -347,6 +347,12 @@ function _block_rehash($theme = NULL) { $regions = system_region_list($theme); $blocks = entity_load_multiple_by_properties('block', array('theme' => $theme)); foreach ($blocks as $block_id => $block) { + // Remove any invalid block from the list. + // @todo Remove this check as part of https://drupal.org/node/1776830. + if (!$block->getPlugin()) { + unset($blocks[$block_id]); + continue; + } $region = $block->get('region'); $status = $block->status(); // Disable blocks in invalid regions. @@ -429,7 +435,11 @@ function block_list($region) { global $theme; $blocks = array(); foreach (entity_load_multiple_by_properties('block', array('theme' => $theme)) as $block_id => $block) { - $blocks[$block->get('region')][$block_id] = $block; + // Onlye include valid blocks in the list. + // @todo Remove this check as part of https://drupal.org/node/1776830. + if ($block->getPlugin()) { + $blocks[$block->get('region')][$block_id] = $block; + } } } diff --git a/core/modules/block/lib/Drupal/block/BlockStorageController.php b/core/modules/block/lib/Drupal/block/BlockStorageController.php deleted file mode 100644 index 1432712..0000000 --- a/core/modules/block/lib/Drupal/block/BlockStorageController.php +++ /dev/null @@ -1,29 +0,0 @@ -getPlugin(); - }); - } - -} diff --git a/core/modules/block/lib/Drupal/block/Entity/Block.php b/core/modules/block/lib/Drupal/block/Entity/Block.php index e465455..2cd8ca8 100644 --- a/core/modules/block/lib/Drupal/block/Entity/Block.php +++ b/core/modules/block/lib/Drupal/block/Entity/Block.php @@ -22,7 +22,7 @@ * label = @Translation("Block"), * module = "block", * controllers = { - * "storage" = "Drupal\block\BlockStorageController", + * "storage" = "Drupal\Core\Config\Entity\ConfigStorageController", * "access" = "Drupal\block\BlockAccessController", * "render" = "Drupal\block\BlockRenderController", * "list" = "Drupal\block\BlockListController", diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockLanguageCacheTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockLanguageCacheTest.php index 91ee298..2acacf0 100644 --- a/core/modules/block/lib/Drupal/block/Tests/BlockLanguageCacheTest.php +++ b/core/modules/block/lib/Drupal/block/Tests/BlockLanguageCacheTest.php @@ -7,20 +7,21 @@ namespace Drupal\block\Tests; +use Drupal\Component\Utility\Unicode; use Drupal\Core\Language\Language; -use Drupal\aggregator\Tests\AggregatorTestBase; +use Drupal\simpletest\WebTestBase; /** * Tests multilingual block definition caching. */ -class BlockLanguageCacheTest extends AggregatorTestBase { +class BlockLanguageCacheTest extends WebTestBase { /** * Modules to enable. * * @var array */ - public static $modules = array('block', 'language'); + public static $modules = array('block', 'language', 'menu'); /** * List of langcodes. @@ -32,7 +33,7 @@ class BlockLanguageCacheTest extends AggregatorTestBase { public static function getInfo() { return array( 'name' => 'Multilingual blocks', - 'description' => 'Checks display of aggregator blocks with multiple languages.', + 'description' => 'Checks display of menu blocks with multiple languages.', 'group' => 'Block', ); } @@ -60,10 +61,7 @@ public function testBlockLinks() { $admin_user = $this->drupalCreateUser(array( 'administer blocks', 'access administration pages', - 'administer news feeds', - 'access news feeds', - 'create article content', - 'administer languages', + 'administer menu', )); $this->drupalLogin($admin_user); @@ -72,14 +70,16 @@ public function testBlockLinks() { $this->drupalGet('admin/structure/block', array('language' => $langcode)); } - // Create a feed in the default language. - $this->createSampleNodes(); - $feed = $this->createFeed(); + // Create a menu in the default language. + $edit['label'] = $this->randomName(); + $edit['id'] = Unicode::strtolower($edit['label']); + $this->drupalPost('admin/structure/menu/add', $edit, t('Save')); + $this->assertText(t('Menu @label has been added.', array('@label' => $edit['label']))); // Check that the block is listed for all languages. foreach ($this->langcodes as $langcode) { $this->drupalGet('admin/structure/block', array('language' => $langcode)); - $this->assertText($feed->label()); + $this->assertText($edit['label']); } } } diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php index 1b9c6df..4eafafe 100644 --- a/core/modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php +++ b/core/modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php @@ -7,19 +7,15 @@ namespace Drupal\block\Tests; -use Drupal\Core\Language\Language; +use Drupal\Core\Config\Entity\ConfigStorageController; use Drupal\simpletest\DrupalUnitTestBase; use Drupal\block_test\Plugin\Block\TestHtmlIdBlock; use Drupal\Component\Plugin\Exception\PluginException; -use Drupal\block\BlockStorageController; -use Drupal\Core\Entity\EntityMalformedException; use Drupal\block\Entity\Block; use Drupal\block\BlockInterface; /** * Tests the storage of blocks. - * - * @see \Drupal\block\BlockStorageController */ class BlockStorageUnitTest extends DrupalUnitTestBase { @@ -33,7 +29,7 @@ class BlockStorageUnitTest extends DrupalUnitTestBase { /** * The block storage controller. * - * @var \Drupal\block\BlockStorageController. + * @var \Drupal\Core\Config\Entity\ConfigStorageController. */ protected $controller; @@ -55,7 +51,7 @@ protected function setUp() { * Tests CRUD operations. */ public function testBlockCRUD() { - $this->assertTrue($this->controller instanceof BlockStorageController, 'The block storage controller is loaded.'); + $this->assertTrue($this->controller instanceof ConfigStorageController, 'The block storage controller is loaded.'); // Run each test method in the same installation. $this->createTests(); diff --git a/core/modules/block/tests/lib/Drupal/block/Tests/BlockFormControllerTest.php b/core/modules/block/tests/lib/Drupal/block/Tests/BlockFormControllerTest.php index c1677c5..c034c2c 100644 --- a/core/modules/block/tests/lib/Drupal/block/Tests/BlockFormControllerTest.php +++ b/core/modules/block/tests/lib/Drupal/block/Tests/BlockFormControllerTest.php @@ -41,7 +41,7 @@ public static function getInfo() { * @see \Drupal\block\BlockFormController::getUniqueMachineName() */ public function testGetUniqueMachineName() { - $block_storage = $this->getMockBuilder('Drupal\block\BlockStorageController') + $block_storage = $this->getMockBuilder('Drupal\Core\Config\Entity\ConfigStorageController') ->disableOriginalConstructor() ->getMock(); $blocks = array();