CorrespondingReferenceSyncForm.php in Corresponding Entity References 8.4
File
src/Form/CorrespondingReferenceSyncForm.php
View source
<?php
namespace Drupal\cer\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
class CorrespondingReferenceSyncForm extends EntityConfirmFormBase {
public function getQuestion() {
return $this
->t('Are you sure you want to synchronize the values for corresponding reference %label?', [
'%label' => $this->entity
->label(),
]);
}
public function getCancelUrl() {
return new Url('entity.corresponding_reference.collection');
}
public function getConfirmText() {
return $this
->t('Synchronize');
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->entity
->delete();
$this
->messenger()
->addStatus($this
->t('Corresponding reference %label has been synchronized.', [
'%label' => $this->entity
->label(),
]));
}
}