flag-8.x-4.x-dev/src/Form/UnflaggingForm.php
src/Form/UnflaggingForm.php
<?php
namespace Drupal\flag\Form;
use Drupal\Core\Form\FormStateInterface;
use Drupal\flag\Plugin\ActionLink\FormEntryInterface;
/**
* Provides the confirm form page for unflagging an entity.
*
* @see \Drupal\flag\Plugin\ActionLink\ConfirmForm
*/
class UnflaggingForm extends FlagConfirmFormBase {
/**
* The flagging entity.
*
* @var \Drupal\flag\FlaggingInterface
*/
protected $flagging;
/**
* The flaggable entity.
*
* @var \Drupal\Core\Entity\EntityInterface
*/
protected $entity;
/**
* The flag entity.
*
* @var \Drupal\flag\FlagInterface
*/
protected $flag;
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'unflagging_form';
}
/**
* {@inheritdoc}
*/
public function getQuestion() {
$link_plugin = $this->flag->getLinkTypePlugin();
return $link_plugin instanceof FormEntryInterface ? $link_plugin->getUnflagQuestion() : $this->t('Unflag this content');
}
/**
* {@inheritdoc}
*/
public function getDescription() {
return $this->flag->getLongText('unflag');
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
$link_plugin = $this->flag->getLinkTypePlugin();
return $link_plugin instanceof FormEntryInterface ? $link_plugin->getDeleteButtonText() : $this->t('Unflag');
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->flagService->unflag($this->flag, $this->entity);
}
}
