TourTipDeleteForm.php in Tour UI 8        
                          
                  
                        
  
  
  
  
  
File
  src/Form/TourTipDeleteForm.php
  
    View source  
  <?php
namespace Drupal\tour_ui\Form;
use Drupal\Core\Form\ConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Messenger\MessengerInterface;
use Drupal\Core\Url;
use Symfony\Component\DependencyInjection\ContainerInterface;
class TourTipDeleteForm extends ConfirmFormBase {
  
  protected $entity;
  
  protected $tip;
  
  protected $entityTypeManager;
  
  protected $messenger;
  
  public function __construct(EntityTypeManagerInterface $entity_type_manager, MessengerInterface $messenger) {
    $this->entityTypeManager = $entity_type_manager;
    $this->messenger = $messenger;
  }
  
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_type.manager'), $container
      ->get('messenger'));
  }
  
  public function getFormId() {
    return 'tour_ui_tip_confirm_delete';
  }
  
  public function getCancelUrl() {
    return Url::fromRoute('entity.tour.edit_form', [
      'tour' => $this->entity
        ->id(),
    ]);
  }
  
  public function getQuestion() {
    return $this
      ->t('Are you sure you want to delete the %tour tour %tip tip?', [
      '%tour' => $this->entity
        ->label(),
      '%tip' => $this->tip
        ->get('label'),
    ]);
  }
  
  public function buildForm(array $form, FormStateInterface $form_state, $tour = '', $tip = '') {
    $this->entity = $this->entityTypeManager
      ->getStorage('tour')
      ->load($tour);
    $tour = $this->entity;
    $this->tip = $tour
      ->getTip($tip);
    return parent::buildForm($form, $form_state);
  }
  
  public function validateForm(array &$form, FormStateInterface $form_state) {
  }
  
  public function submitForm(array &$form, FormStateInterface $form_state) {
    
    $candidate = $this->tip
      ->get('id');
    $tips = [];
    foreach ($this->entity
      ->getTips() as $tip) {
      $tip_id = $tip
        ->get('id');
      if ($tip_id == $candidate) {
        continue;
      }
      $tips[$tip_id] = $tip
        ->getConfiguration();
    }
    $this->entity
      ->set('tips', $tips);
    $this->entity
      ->save();
    $form_state
      ->setRedirect('entity.tour.edit_form', [
      'tour' => $this->entity
        ->id(),
    ]);
    $this->messenger
      ->addMessage($this
      ->t('Deleted the %tour tour %tip tip.', [
      '%tour' => $this->entity
        ->label(),
      '%tip' => $this->tip
        ->get('label'),
    ]));
  }
}