You are here

AvatarGeneratorStorageInterface.php in Avatar Kit 8

Namespace

Drupal\avatars

File

src/AvatarGeneratorStorageInterface.php
View source
<?php

namespace Drupal\avatars;

use Drupal\Core\Config\Entity\ConfigEntityStorageInterface;

/**
 * Defines an interface for avatar generator storage.
 */
interface AvatarGeneratorStorageInterface extends ConfigEntityStorageInterface {

  /**
   * Get all enabled avatar generator plugin instances.
   *
   * @return \Drupal\avatars\AvatarGeneratorInterface[]
   *   An array of avatar generator plugin instances.
   */
  public function getEnabledAvatarGenerators();

}

Interfaces

Namesort descending Description
AvatarGeneratorStorageInterface Defines an interface for avatar generator storage.