You are here

OnlyOneEvents.php in Allow a content type only once (Only One) 8

File

src/Event/OnlyOneEvents.php
View source
<?php

namespace Drupal\onlyone\Event;

use Symfony\Component\EventDispatcher\Event;

/**
 * Class OnlyOneEvents.
 */
class OnlyOneEvents extends Event {

  /**
   * Event related to a change in the content types configuration.
   */
  const CONTENT_TYPES_UPDATED = 'onlyone.content_types_updated';

}

Classes

Namesort descending Description
OnlyOneEvents Class OnlyOneEvents.