farm-2.x-dev/modules/core/id_tag/src/Entity/FarmIDTagTypeInterface.php
modules/core/id_tag/src/Entity/FarmIDTagTypeInterface.php
<?php
namespace Drupal\farm_id_tag\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining FarmIDTagType config entities.
*
* @ingroup farm
*/
interface FarmIDTagTypeInterface extends ConfigEntityInterface {
/**
* Returns the ID tag type label.
*
* @return string
* The ID tag type label.
*/
public function getLabel();
/**
* Returns the bundles that this type applies to.
*
* @return array
* An array of bundle machine names.
*/
public function getBundles();
}
