public function Modal::setDontShowAgainLabel in Modal 4.1.x
Same name and namespace in other branches
- 5.0.x src/Entity/Modal.php \Drupal\modal_page\Entity\Modal::setDontShowAgainLabel()
- 4.0.x src/Entity/Modal.php \Drupal\modal_page\Entity\Modal::setDontShowAgainLabel()
Set Dont Show Again Label.
Overrides ModalInterface::setDontShowAgainLabel
File
- src/
Entity/ Modal.php, line 540
Class
- Modal
- Defines the Modal entity.
Namespace
Drupal\modal_page\EntityCode
public function setDontShowAgainLabel($dontShowAgainLabel) {
$this
->set('dont_show_again_label', $dontShowAgainLabel);
return $this;
}