/**
  * Constructs a new InPlaceEditorDisplayBuilder.
  *
  * @param array $configuration
  *   A configuration array containing information about the plugin instance.
  * @param string $plugin_id
  *   The plugin ID for the plugin instance.
  * @param mixed $plugin_definition
  *   The plugin definition.
  * @param \Drupal\Core\Plugin\Context\ContextHandlerInterface $context_handler
  *   The context handler.
  * @param \Drupal\Core\Session\AccountInterface $account
  *   The current user.
  * @param \Drupal\user\SharedTempStoreFactory $temp_store_factory
  *   The factory for the temp store object.
  */
 public function __construct(array $configuration, $plugin_id, $plugin_definition, ContextHandlerInterface $context_handler, AccountInterface $account, SharedTempStoreFactory $temp_store_factory)
 {
     parent::__construct($configuration, $plugin_id, $plugin_definition, $context_handler, $account);
     $this->tempStore = $temp_store_factory->get('panels_ipe');
 }