You are here

NameListFormatInterface.php in Name Field 8

Namespace

Drupal\name

File

src/NameListFormatInterface.php
View source
<?php

namespace Drupal\name;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

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

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

  /**
   * Get the list settings.
   *
   * @return array
   *   The settings with any custom processing completed.
   */
  public function listSettings();

}

Interfaces

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