FarmFlag.php in farmOS 2.x
Namespace
Drupal\farm_flag\EntityFile
modules/core/flag/src/Entity/FarmFlag.phpView source
<?php
namespace Drupal\farm_flag\Entity;
use Drupal\Core\Config\Entity\ConfigEntityBase;
/**
* Defines the FarmFlag entity.
*
* @ConfigEntityType(
* id = "flag",
* label = @Translation("Flag"),
* label_collection = @Translation("Flags"),
* handlers = {
* "access" = "\Drupal\entity\EntityAccessControlHandler",
* "permission_provider" = "\Drupal\entity\EntityPermissionProvider",
* },
* entity_keys = {
* "id" = "id",
* "label" = "label",
* },
* config_export = {
* "id",
* "label",
* "entity_types",
* },
* )
*
* @ingroup farm
*/
class FarmFlag extends ConfigEntityBase implements FarmFlagInterface {
/**
* The flag ID.
*
* @var string
*/
protected $id;
/**
* The flag label.
*
* @var string
*/
protected $label;
/**
* The entity types and bundles that this flag applies to.
*
* @var array
*/
protected $entity_types;
/**
* {@inheritdoc}
*/
public function getLabel() {
return $this->label;
}
/**
* {@inheritdoc}
*/
public function getEntitytypes() {
return $this->entity_types;
}
}