PictureMappingInterface.php

Contains \Drupal\picture\Plugin\Core\Entity\PictureMappingInterface.

Namespace

Drupal\picture

File

drupal/core/modules/picture/lib/Drupal/picture/PictureMappingInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\picture\Plugin\Core\Entity\PictureMappingInterface.
 */
namespace Drupal\picture;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface defining a picture mapping entity.
 */
interface PictureMappingInterface extends ConfigEntityInterface {

  /**
   * Checks if there's at least one mapping defined.
   */
  public function hasMappings();

}

Interfaces

Namesort descending Description
PictureMappingInterface Provides an interface defining a picture mapping entity.