Gennerated Profile entity

This commit is contained in:
naomi
2018-04-05 20:05:00 +02:00
parent e933c3ae23
commit 7ac39fc385
31 changed files with 1974 additions and 4 deletions

View File

@ -0,0 +1,281 @@
<?php
namespace Drupal\zencrm_entities\Entity;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Field\BaseFieldDefinition;
use Drupal\Core\Entity\RevisionableContentEntityBase;
use Drupal\Core\Entity\RevisionableInterface;
use Drupal\Core\Entity\EntityChangedTrait;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\user\UserInterface;
/**
* Defines the Profile entity.
*
* @ingroup zencrm_entities
*
* @ContentEntityType(
* id = "profile",
* label = @Translation("Profile"),
* bundle_label = @Translation("Profile type"),
* handlers = {
* "storage" = "Drupal\zencrm_entities\ProfileStorage",
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
* "list_builder" = "Drupal\zencrm_entities\ProfileListBuilder",
* "views_data" = "Drupal\zencrm_entities\Entity\ProfileViewsData",
* "translation" = "Drupal\zencrm_entities\ProfileTranslationHandler",
*
* "form" = {
* "default" = "Drupal\zencrm_entities\Form\ProfileForm",
* "add" = "Drupal\zencrm_entities\Form\ProfileForm",
* "edit" = "Drupal\zencrm_entities\Form\ProfileForm",
* "delete" = "Drupal\zencrm_entities\Form\ProfileDeleteForm",
* },
* "access" = "Drupal\zencrm_entities\ProfileAccessControlHandler",
* "route_provider" = {
* "html" = "Drupal\zencrm_entities\ProfileHtmlRouteProvider",
* },
* },
* base_table = "profile",
* data_table = "profile_field_data",
* revision_table = "profile_revision",
* revision_data_table = "profile_field_revision",
* translatable = TRUE,
* admin_permission = "administer profile entities",
* entity_keys = {
* "id" = "id",
* "revision" = "vid",
* "bundle" = "type",
* "label" = "name",
* "uuid" = "uuid",
* "uid" = "user_id",
* "langcode" = "langcode",
* "status" = "status",
* },
* links = {
* "canonical" = "/zencrm/profile/{profile}",
* "add-page" = "/zencrm/profile/add",
* "add-form" = "/zencrm/profile/add/{profile_type}",
* "edit-form" = "/zencrm/profile/{profile}/edit",
* "delete-form" = "/zencrm/profile/{profile}/delete",
* "version-history" = "/zencrm/profile/{profile}/revisions",
* "revision" = "/zencrm/profile/{profile}/revisions/{profile_revision}/view",
* "revision_revert" = "/zencrm/profile/{profile}/revisions/{profile_revision}/revert",
* "revision_delete" = "/zencrm/profile/{profile}/revisions/{profile_revision}/delete",
* "translation_revert" = "/zencrm/profile/{profile}/revisions/{profile_revision}/revert/{langcode}",
* "collection" = "/zencrm/profile",
* },
* bundle_entity_type = "profile_type",
* field_ui_base_route = "entity.profile_type.edit_form"
* )
*/
class Profile extends RevisionableContentEntityBase implements ProfileInterface {
use EntityChangedTrait;
/**
* {@inheritdoc}
*/
public static function preCreate(EntityStorageInterface $storage_controller, array &$values) {
parent::preCreate($storage_controller, $values);
$values += [
'user_id' => \Drupal::currentUser()->id(),
];
}
/**
* {@inheritdoc}
*/
protected function urlRouteParameters($rel) {
$uri_route_parameters = parent::urlRouteParameters($rel);
if ($rel === 'revision_revert' && $this instanceof RevisionableInterface) {
$uri_route_parameters[$this->getEntityTypeId() . '_revision'] = $this->getRevisionId();
}
elseif ($rel === 'revision_delete' && $this instanceof RevisionableInterface) {
$uri_route_parameters[$this->getEntityTypeId() . '_revision'] = $this->getRevisionId();
}
return $uri_route_parameters;
}
/**
* {@inheritdoc}
*/
public function preSave(EntityStorageInterface $storage) {
parent::preSave($storage);
foreach (array_keys($this->getTranslationLanguages()) as $langcode) {
$translation = $this->getTranslation($langcode);
// If no owner has been set explicitly, make the anonymous user the owner.
if (!$translation->getOwner()) {
$translation->setOwnerId(0);
}
}
// If no revision author has been set explicitly, make the profile owner the
// revision author.
if (!$this->getRevisionUser()) {
$this->setRevisionUserId($this->getOwnerId());
}
}
/**
* {@inheritdoc}
*/
public function getName() {
return $this->get('name')->value;
}
/**
* {@inheritdoc}
*/
public function setName($name) {
$this->set('name', $name);
return $this;
}
/**
* {@inheritdoc}
*/
public function getCreatedTime() {
return $this->get('created')->value;
}
/**
* {@inheritdoc}
*/
public function setCreatedTime($timestamp) {
$this->set('created', $timestamp);
return $this;
}
/**
* {@inheritdoc}
*/
public function getOwner() {
return $this->get('user_id')->entity;
}
/**
* {@inheritdoc}
*/
public function getOwnerId() {
return $this->get('user_id')->target_id;
}
/**
* {@inheritdoc}
*/
public function setOwnerId($uid) {
$this->set('user_id', $uid);
return $this;
}
/**
* {@inheritdoc}
*/
public function setOwner(UserInterface $account) {
$this->set('user_id', $account->id());
return $this;
}
/**
* {@inheritdoc}
*/
public function isPublished() {
return (bool) $this->getEntityKey('status');
}
/**
* {@inheritdoc}
*/
public function setPublished($published) {
$this->set('status', $published ? TRUE : FALSE);
return $this;
}
/**
* {@inheritdoc}
*/
public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
$fields = parent::baseFieldDefinitions($entity_type);
$fields['user_id'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('Authored by'))
->setDescription(t('The user ID of author of the Profile entity.'))
->setRevisionable(TRUE)
->setSetting('target_type', 'user')
->setSetting('handler', 'default')
->setTranslatable(TRUE)
->setDisplayOptions('view', [
'label' => 'hidden',
'type' => 'author',
'weight' => 0,
])
->setDisplayOptions('form', [
'type' => 'entity_reference_autocomplete',
'weight' => 5,
'settings' => [
'match_operator' => 'CONTAINS',
'size' => '60',
'autocomplete_type' => 'tags',
'placeholder' => '',
],
])
->setDisplayConfigurable('form', TRUE)
->setDisplayConfigurable('view', TRUE);
$fields['name'] = BaseFieldDefinition::create('string')
->setLabel(t('Name'))
->setDescription(t('The name of the Profile entity.'))
->setRevisionable(TRUE)
->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 Profile is published.'))
->setRevisionable(TRUE)
->setDefaultValue(TRUE)
->setDisplayOptions('form', [
'type' => 'boolean_checkbox',
'weight' => -3,
]);
$fields['created'] = BaseFieldDefinition::create('created')
->setLabel(t('Created'))
->setDescription(t('The time that the entity was created.'));
$fields['changed'] = BaseFieldDefinition::create('changed')
->setLabel(t('Changed'))
->setDescription(t('The time that the entity was last edited.'));
$fields['revision_translation_affected'] = BaseFieldDefinition::create('boolean')
->setLabel(t('Revision translation affected'))
->setDescription(t('Indicates if the last edit of a translation belongs to current revision.'))
->setReadOnly(TRUE)
->setRevisionable(TRUE)
->setTranslatable(TRUE);
return $fields;
}
}

View File

@ -0,0 +1,116 @@
<?php
namespace Drupal\zencrm_entities\Entity;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\RevisionLogInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface for defining Profile entities.
*
* @ingroup zencrm_entities
*/
interface ProfileInterface extends ContentEntityInterface, RevisionLogInterface, EntityChangedInterface, EntityOwnerInterface {
// Add get/set methods for your configuration properties here.
/**
* Gets the Profile name.
*
* @return string
* Name of the Profile.
*/
public function getName();
/**
* Sets the Profile name.
*
* @param string $name
* The Profile name.
*
* @return \Drupal\zencrm_entities\Entity\ProfileInterface
* The called Profile entity.
*/
public function setName($name);
/**
* Gets the Profile creation timestamp.
*
* @return int
* Creation timestamp of the Profile.
*/
public function getCreatedTime();
/**
* Sets the Profile creation timestamp.
*
* @param int $timestamp
* The Profile creation timestamp.
*
* @return \Drupal\zencrm_entities\Entity\ProfileInterface
* The called Profile entity.
*/
public function setCreatedTime($timestamp);
/**
* Returns the Profile published status indicator.
*
* Unpublished Profile are only visible to restricted users.
*
* @return bool
* TRUE if the Profile is published.
*/
public function isPublished();
/**
* Sets the published status of a Profile.
*
* @param bool $published
* TRUE to set this Profile to published, FALSE to set it to unpublished.
*
* @return \Drupal\zencrm_entities\Entity\ProfileInterface
* The called Profile entity.
*/
public function setPublished($published);
/**
* Gets the Profile revision creation timestamp.
*
* @return int
* The UNIX timestamp of when this revision was created.
*/
public function getRevisionCreationTime();
/**
* Sets the Profile revision creation timestamp.
*
* @param int $timestamp
* The UNIX timestamp of when this revision was created.
*
* @return \Drupal\zencrm_entities\Entity\ProfileInterface
* The called Profile entity.
*/
public function setRevisionCreationTime($timestamp);
/**
* Gets the Profile revision author.
*
* @return \Drupal\user\UserInterface
* The user entity for the revision author.
*/
public function getRevisionUser();
/**
* Sets the Profile revision author.
*
* @param int $uid
* The user ID of the revision author.
*
* @return \Drupal\zencrm_entities\Entity\ProfileInterface
* The called Profile entity.
*/
public function setRevisionUserId($uid);
}

View File

@ -0,0 +1,58 @@
<?php
namespace Drupal\zencrm_entities\Entity;
use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
/**
* Defines the Profile type entity.
*
* @ConfigEntityType(
* id = "profile_type",
* label = @Translation("Profile type"),
* handlers = {
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
* "list_builder" = "Drupal\zencrm_entities\ProfileTypeListBuilder",
* "form" = {
* "add" = "Drupal\zencrm_entities\Form\ProfileTypeForm",
* "edit" = "Drupal\zencrm_entities\Form\ProfileTypeForm",
* "delete" = "Drupal\zencrm_entities\Form\ProfileTypeDeleteForm"
* },
* "route_provider" = {
* "html" = "Drupal\zencrm_entities\ProfileTypeHtmlRouteProvider",
* },
* },
* config_prefix = "profile_type",
* admin_permission = "administer site configuration",
* bundle_of = "profile",
* entity_keys = {
* "id" = "id",
* "label" = "label",
* "uuid" = "uuid"
* },
* links = {
* "canonical" = "/admin/zencrm/profile_type/{profile_type}",
* "add-form" = "/admin/zencrm/profile_type/add",
* "edit-form" = "/admin/zencrm/profile_type/{profile_type}/edit",
* "delete-form" = "/admin/zencrm/profile_type/{profile_type}/delete",
* "collection" = "/admin/zencrm/profile_type"
* }
* )
*/
class ProfileType extends ConfigEntityBundleBase implements ProfileTypeInterface {
/**
* The Profile type ID.
*
* @var string
*/
protected $id;
/**
* The Profile type label.
*
* @var string
*/
protected $label;
}

View File

@ -0,0 +1,13 @@
<?php
namespace Drupal\zencrm_entities\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining Profile type entities.
*/
interface ProfileTypeInterface extends ConfigEntityInterface {
// Add get/set methods for your configuration properties here.
}

View File

@ -0,0 +1,24 @@
<?php
namespace Drupal\zencrm_entities\Entity;
use Drupal\views\EntityViewsData;
/**
* Provides Views data for Profile entities.
*/
class ProfileViewsData extends EntityViewsData {
/**
* {@inheritdoc}
*/
public function getViewsData() {
$data = parent::getViewsData();
// Additional information for Views integration, such as table joins, can be
// put here.
return $data;
}
}