SalesforceMappingDisableForm.php in Salesforce Suite 8.4
File
modules/salesforce_mapping_ui/src/Form/SalesforceMappingDisableForm.php
View source
<?php
namespace Drupal\salesforce_mapping_ui\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
class SalesforceMappingDisableForm extends EntityConfirmFormBase {
public function getQuestion() {
return $this
->t('Are you sure you want to disable the mapping %name?', [
'%name' => $this->entity
->label(),
]);
}
public function getDescription() {
return $this
->t('Disabling a mapping will stop any automatic synchronization and hide the mapping.');
}
public function getCancelUrl() {
return new Url('entity.salesforce_mapping.list');
}
public function getConfirmText() {
return $this
->t('Disable');
}
public function submit(array $form, FormStateInterface $form_state) {
parent::submit($form, $form_state);
$this->entity
->disable()
->save();
$form_state['redirect_route'] = [
'route_name' => 'entity.salesforce_mapping.list',
];
}
}