entity_reference_uuid-8.x-1.x-dev/tests/modules/entity_reference_uuid_test/src/Entity/TestEntityOne.php
tests/modules/entity_reference_uuid_test/src/Entity/TestEntityOne.php
<?php
namespace Drupal\entity_reference_uuid_test\Entity;
use Drupal\Core\Entity\ContentEntityBase;
use Drupal\Core\Entity\EntityPublishedInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Field\BaseFieldDefinition;
/**
* Defines the Test entity one entity.
*
* @ingroup entity_reference_uuid_test
*
* @ContentEntityType(
* id = "test_entity_one",
* label = @Translation("Test entity one"),
* handlers = {
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
* "views_data" = "Drupal\views\EntityViewsData",
*
* "form" = {
* "default" = "Drupal\entity_reference_uuid_test\Form\TestEntityOneForm",
* "add" = "Drupal\entity_reference_uuid_test\Form\TestEntityOneForm",
* "edit" = "Drupal\entity_reference_uuid_test\Form\TestEntityOneForm",
* "delete" = "Drupal\Core\Entity\ContentEntityDeleteForm",
* },
* "access" = "Drupal\entity_reference_uuid_test\TestEntityAccessControlHandler",
* "route_provider" = {
* "html" = "Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider",
* },
* },
* base_table = "test_entity_one",
* entity_keys = {
* "id" = "id",
* "label" = "name",
* "uuid" = "uuid",
* "langcode" = "langcode",
* "status" = "status",
* },
* links = {
* "canonical" = "/admin/structure/test_entity_one/{test_entity_one}",
* "add-form" = "/admin/structure/test_entity_one/add",
* "edit-form" = "/admin/structure/test_entity_one/{test_entity_one}/edit",
* "delete-form" = "/admin/structure/test_entity_one/{test_entity_one}/delete",
* }
* )
*/
class TestEntityOne extends ContentEntityBase implements EntityPublishedInterface {
/**
* {@inheritdoc}
*/
public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
$fields = parent::baseFieldDefinitions($entity_type);
$fields['name'] = BaseFieldDefinition::create('string')
->setLabel(t('Name'))
->setDescription(t('The name of the Test entity one entity.'))
->setSettings([
'max_length' => 50,
'text_processing' => 0,
])
->setDefaultValue('')
->setDisplayOptions('view', [
'label' => 'above',
'type' => 'string',
'weight' => -4,
])
->setDisplayOptions('form', [
'type' => 'string_textfield',
'weight' => -4,
])
->setDisplayConfigurable('form', TRUE)
->setDisplayConfigurable('view', TRUE)
->setRequired(TRUE);
$fields['status'] = BaseFieldDefinition::create('boolean')
->setLabel(t('Publishing status'))
->setDescription(t('A boolean indicating whether the Test entity one is published.'))
->setDefaultValue(TRUE)
->setDisplayOptions('form', [
'type' => 'boolean_checkbox',
'weight' => -3,
]);
return $fields;
}
/**
* {@inheritdoc}
*/
public function isPublished() {
return (bool) $this->get('status')->value;
}
/**
* {@inheritdoc}
*/
public function setPublished($published = NULL) {
if ($published !== NULL) {
@trigger_error('The $published parameter is deprecated in drupal:8.3.1 and is removed from drupal:9.0.0. See https://www.drupal.org/project/drupal/issues/2789315', E_USER_DEPRECATED);
$value = (bool) $published;
}
else {
$value = TRUE;
}
$this->set('status', $value);
return $this;
}
/**
* {@inheritdoc}
*/
public function setUnpublished() {
$this->set('status', FALSE);
return $this;
}
}
