You are here

NameFormatInterface.php in Name Field 8

Namespace

Drupal\name

File

src/NameFormatInterface.php
View source
<?php

namespace Drupal\name;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface defining a name format.
 */
interface NameFormatInterface extends ConfigEntityInterface {

  /**
   * Determines if this name format is locked.
   *
   * @return bool
   *   TRUE if the name format is locked, FALSE otherwise.
   */
  public function isLocked();

}

Interfaces

Namesort descending Description
NameFormatInterface Provides an interface defining a name format.