You are here

InstagramAccountDeleteForm.php in Instagram Feeds 8

File

src/Form/InstagramAccountDeleteForm.php
View source
<?php

namespace Drupal\instagram_feeds\Form;

use Drupal\Core\Entity\ContentEntityDeleteForm;

/**
 * Provides the Instagram Account deletion form.
 */
class InstagramAccountDeleteForm extends ContentEntityDeleteForm {

  /**
   * {@inheritdoc}
   */
  public function getDescription() {
    return $this
      ->getQuestion() . ' ' . parent::getDescription();
  }

}

Classes

Namesort descending Description
InstagramAccountDeleteForm Provides the Instagram Account deletion form.