Commit bbbc1f37 authored by Thomas Seidl's avatar Thomas Seidl
Browse files

Issue #3358661 by drunken monkey, tobiasb: Fixed coding standards.

parent 526efac7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
Search API 1.x, dev (xxxx-xx-xx):
---------------------------------
- #3358661 by drunken monkey, tobiasb: Fixed coding standards.
- #3271256 by akalam, drunken monkey: Fixed infinite loop when indexing external
  entities.
- #3354906 by ericchew, drunken monkey, miedward: Fixed regression in Views
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
 * Attaches show/hide functionality to checkboxes in the "Processor" tab.
 */

($ => {
(($) => {
  Drupal.behaviors.searchApiProcessor = {
    attach(context) {
      const selector = '.search-api-status-wrapper input.form-checkbox';
+0 −1
Original line number Diff line number Diff line
@@ -241,7 +241,6 @@ function _search_api_views_get_handlers(FieldInterface $field) {
      }
    }
  }
  // @todo Replace with multi-catch once we depend on PHP 7.1+.
  catch (SearchApiException | PluginNotFoundException $e) {
    $vars['%index'] = $field->getIndex()->label();
    $vars['%field'] = $field->getPrefixedLabel();
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

namespace Drupal\search_api\Entity;

@trigger_error('\Drupal\search_api\Entity\TaskStorageSchema is deprecated in search_api:8.x-1.23 and is removed from search_api:2.0.0. There is no replacement. See https://www.drupal.org/node/3247781.', E_USER_DEPRECATED);
@trigger_error('\Drupal\search_api\Entity\TaskStorageSchema is deprecated in search_api:8.x-1.23 and is removed from search_api:2.0.0. There is no replacement. See https://www.drupal.org/node/3247781', E_USER_DEPRECATED);

use Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema;

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

namespace Drupal\search_api\Plugin\search_api\datasource;

@trigger_error('\Drupal\search_api\Plugin\search_api\datasource\EntityDatasourceInterface is deprecated in search_api:8.x-1.16 and is removed from search_api:2.0.0. There is no replacement. See https://www.drupal.org/node/3103584.', E_USER_DEPRECATED);
@trigger_error('\Drupal\search_api\Plugin\search_api\datasource\EntityDatasourceInterface is deprecated in search_api:8.x-1.16 and is removed from search_api:2.0.0. There is no replacement. See https://www.drupal.org/node/3103584', E_USER_DEPRECATED);

use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\search_api\Datasource\DatasourceInterface;
Loading