Loading CHANGELOG.txt +2 −0 Original line number Diff line number Diff line Search API 1.x, dev (xxxx-xx-xx): --------------------------------- - #3256114 by drunken monkey: Fixed wrong static method calls in UnsavedIndexConfiguration. - #2869103 by osopolar, drunken monkey: Fixed problems with theme cache when indexing the "Rendered HTML output" field. - #3229495 by AndyF, drunken monkey: Fixed "start batch tracking" functionality Loading src/UnsavedIndexConfiguration.php +4 −5 Original line number Diff line number Diff line Loading @@ -4,7 +4,6 @@ namespace Drupal\search_api; use Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException; use Drupal\Component\Plugin\Exception\PluginNotFoundException; use Drupal\Core\Entity\EntityInterface; use Drupal\Core\Entity\EntityStorageException; use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\Entity\EntityStorageInterface; Loading Loading @@ -907,7 +906,7 @@ class UnsavedIndexConfiguration implements IndexInterface, UnsavedConfigurationI * {@inheritdoc} */ public static function preCreate(EntityStorageInterface $storage, array &$values) { EntityInterface::preCreate($storage, $values); Index::preCreate($storage, $values); } /** Loading @@ -921,21 +920,21 @@ class UnsavedIndexConfiguration implements IndexInterface, UnsavedConfigurationI * {@inheritdoc} */ public static function preDelete(EntityStorageInterface $storage, array $entities) { EntityInterface::preDelete($storage, $entities); Index::preDelete($storage, $entities); } /** * {@inheritdoc} */ public static function postDelete(EntityStorageInterface $storage, array $entities) { EntityInterface::postDelete($storage, $entities); Index::postDelete($storage, $entities); } /** * {@inheritdoc} */ public static function postLoad(EntityStorageInterface $storage, array &$entities) { EntityInterface::postLoad($storage, $entities); Index::postLoad($storage, $entities); } /** Loading Loading
CHANGELOG.txt +2 −0 Original line number Diff line number Diff line Search API 1.x, dev (xxxx-xx-xx): --------------------------------- - #3256114 by drunken monkey: Fixed wrong static method calls in UnsavedIndexConfiguration. - #2869103 by osopolar, drunken monkey: Fixed problems with theme cache when indexing the "Rendered HTML output" field. - #3229495 by AndyF, drunken monkey: Fixed "start batch tracking" functionality Loading
src/UnsavedIndexConfiguration.php +4 −5 Original line number Diff line number Diff line Loading @@ -4,7 +4,6 @@ namespace Drupal\search_api; use Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException; use Drupal\Component\Plugin\Exception\PluginNotFoundException; use Drupal\Core\Entity\EntityInterface; use Drupal\Core\Entity\EntityStorageException; use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\Entity\EntityStorageInterface; Loading Loading @@ -907,7 +906,7 @@ class UnsavedIndexConfiguration implements IndexInterface, UnsavedConfigurationI * {@inheritdoc} */ public static function preCreate(EntityStorageInterface $storage, array &$values) { EntityInterface::preCreate($storage, $values); Index::preCreate($storage, $values); } /** Loading @@ -921,21 +920,21 @@ class UnsavedIndexConfiguration implements IndexInterface, UnsavedConfigurationI * {@inheritdoc} */ public static function preDelete(EntityStorageInterface $storage, array $entities) { EntityInterface::preDelete($storage, $entities); Index::preDelete($storage, $entities); } /** * {@inheritdoc} */ public static function postDelete(EntityStorageInterface $storage, array $entities) { EntityInterface::postDelete($storage, $entities); Index::postDelete($storage, $entities); } /** * {@inheritdoc} */ public static function postLoad(EntityStorageInterface $storage, array &$entities) { EntityInterface::postLoad($storage, $entities); Index::postLoad($storage, $entities); } /** Loading