You are here

namespace Drupal\cms_content_sync\Event in CMS Content Sync 2.1.x

Same name in other branches
  1. 8 Drupal\cms_content_sync\Event
  2. 2.0.x Drupal\cms_content_sync\Event
Classsort descending Location Description
AfterEntityPull src/Event/AfterEntityPull.php The entity has been pulled successfully. Other modules can use this to react on successful pull events.
AfterEntityPush src/Event/AfterEntityPush.php The entity has been pushed successfully. Other modules can use this to react on successful push events.
BeforeEntityPull src/Event/BeforeEntityPull.php An entity is being pulled. Modules can use this to append additional field values or process other information for different use cases.
BeforeEntityPush src/Event/BeforeEntityPush.php An entity is about to be pushed. Other modules can use this to interact with the push, primarily to add, change or remove field values.
BeforeEntityTypeExport src/Event/BeforeEntityTypeExport.php An entity type is about to be exported. Other modules can use this to add additional fields to the entity type definition, allowing them to process additional information during push and pull (by using BeforeEntityPush and BeforeEntityPull). Check out…