profile-8.x-1.x-dev/src/Event/ProfileLabelEvent.php

src/Event/ProfileLabelEvent.php
<?php

namespace Drupal\profile\Event;

use Drupal\profile\Entity\ProfileInterface;
use Symfony\Contracts\EventDispatcher\Event;

/**
 * Defines the profile label event.
 *
 * @see \Drupal\address\Event\AddressEvents
 */
class ProfileLabelEvent extends Event {

  /**
   * The profile.
   *
   * @var \Drupal\profile\Entity\ProfileInterface
   */
  protected $profile;

  /**
   * The label.
   *
   * @var string|null
   */
  protected $label;

  /**
   * Constructs a new ProfileLabelEvent object.
   *
   * @param \Drupal\profile\Entity\ProfileInterface $profile
   *   The profile.
   * @param string|null $label
   *   The profile label.
   */
  public function __construct(ProfileInterface $profile, ?string $label) {
    $this->profile = $profile;
    $this->label = $label;
  }

  /**
   * Gets the profile.
   *
   * @return \Drupal\profile\Entity\ProfileInterface
   *   The profile.
   */
  public function getProfile() {
    return $this->profile;
  }

  /**
   * Gets the profile label.
   *
   * @return string|null
   *   The profile label.
   */
  public function getLabel(): ?string {
    return $this->label;
  }

  /**
   * Sets the profile label.
   *
   * @param string|null $label
   *   The profile label.
   *
   * @return $this
   */
  public function setLabel(?string $label) {
    $this->label = $label;
    return $this;
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc