salesforce-8.x-4.x-dev/modules/salesforce_mapping_ui/src/Form/SalesforceMappingEnableForm.php
modules/salesforce_mapping_ui/src/Form/SalesforceMappingEnableForm.php
<?php
namespace Drupal\salesforce_mapping_ui\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
/**
* Salesforce Mapping Disable Form .
*/
class SalesforceMappingEnableForm extends EntityConfirmFormBase {
/**
* {@inheritdoc}
*/
public function getQuestion() {
return $this->t('Are you sure you want to enable the mapping %name?', ['%name' => $this->entity->label()]);
}
/**
* {@inheritdoc}
*/
public function getDescription() {
return $this->t('Enabling a mapping will restart any automatic synchronization.');
}
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('entity.salesforce_mapping.list');
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
return $this->t('Enable');
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$this->entity->enable()->save();
$form_state['redirect_route'] = [
'route_name' => 'entity.salesforce_mapping.edit_form',
'route_parameters' => ['salesforce_mapping' => $this->entity->id()],
];
}
}
