2018-04-06 09:14:12 +00:00
|
|
|
<?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 Contact Details entity.
|
|
|
|
*
|
|
|
|
* @ingroup zencrm_entities
|
|
|
|
*
|
|
|
|
* @ContentEntityType(
|
|
|
|
* id = "contact_details",
|
|
|
|
* label = @Translation("Contact Details"),
|
|
|
|
* handlers = {
|
|
|
|
* "storage" = "Drupal\zencrm_entities\ContactDetailsStorage",
|
|
|
|
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
|
|
|
|
* "list_builder" = "Drupal\zencrm_entities\ContactDetailsListBuilder",
|
|
|
|
* "views_data" = "Drupal\zencrm_entities\Entity\ContactDetailsViewsData",
|
|
|
|
* "translation" = "Drupal\zencrm_entities\ContactDetailsTranslationHandler",
|
|
|
|
*
|
|
|
|
* "form" = {
|
|
|
|
* "default" = "Drupal\zencrm_entities\Form\ContactDetailsForm",
|
|
|
|
* "add" = "Drupal\zencrm_entities\Form\ContactDetailsForm",
|
|
|
|
* "edit" = "Drupal\zencrm_entities\Form\ContactDetailsForm",
|
|
|
|
* "delete" = "Drupal\zencrm_entities\Form\ContactDetailsDeleteForm",
|
|
|
|
* },
|
|
|
|
* "access" = "Drupal\zencrm_entities\ContactDetailsAccessControlHandler",
|
|
|
|
* "route_provider" = {
|
|
|
|
* "html" = "Drupal\zencrm_entities\ContactDetailsHtmlRouteProvider",
|
|
|
|
* },
|
|
|
|
* },
|
|
|
|
* base_table = "contact_details",
|
|
|
|
* data_table = "contact_details_field_data",
|
|
|
|
* revision_table = "contact_details_revision",
|
|
|
|
* revision_data_table = "contact_details_field_revision",
|
|
|
|
* translatable = TRUE,
|
|
|
|
* admin_permission = "administer contact details entities",
|
|
|
|
* entity_keys = {
|
|
|
|
* "id" = "id",
|
|
|
|
* "revision" = "vid",
|
|
|
|
* "label" = "name",
|
|
|
|
* "uuid" = "uuid",
|
|
|
|
* "uid" = "user_id",
|
|
|
|
* "langcode" = "langcode",
|
|
|
|
* "status" = "status",
|
|
|
|
* },
|
|
|
|
* links = {
|
|
|
|
* "canonical" = "/zencrm/contact_details/{contact_details}",
|
|
|
|
* "add-form" = "/zencrm/contact_details/add",
|
|
|
|
* "edit-form" = "/zencrm/contact_details/{contact_details}/edit",
|
|
|
|
* "delete-form" = "/zencrm/contact_details/{contact_details}/delete",
|
|
|
|
* "version-history" = "/zencrm/contact_details/{contact_details}/revisions",
|
|
|
|
* "revision" = "/zencrm/contact_details/{contact_details}/revisions/{contact_details_revision}/view",
|
|
|
|
* "revision_revert" = "/zencrm/contact_details/{contact_details}/revisions/{contact_details_revision}/revert",
|
|
|
|
* "revision_delete" = "/zencrm/contact_details/{contact_details}/revisions/{contact_details_revision}/delete",
|
|
|
|
* "translation_revert" = "/zencrm/contact_details/{contact_details}/revisions/{contact_details_revision}/revert/{langcode}",
|
|
|
|
* "collection" = "/zencrm/contact_details",
|
|
|
|
* },
|
|
|
|
* field_ui_base_route = "contact_details.settings"
|
|
|
|
* )
|
|
|
|
*/
|
|
|
|
class ContactDetails extends RevisionableContentEntityBase implements ContactDetailsInterface {
|
|
|
|
|
|
|
|
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 contact_details 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 Contact Details 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);
|
|
|
|
|
2018-04-06 11:43:25 +00:00
|
|
|
// This field is not displayed but is used to compute the name of the entity.
|
|
|
|
// See zencrm_entities.module - zencrm_entities_contact_details_presave().
|
|
|
|
$fields['type'] = BaseFieldDefinition::create('entity_reference')
|
|
|
|
->setLabel(t('Type'))
|
2018-04-06 11:05:05 +00:00
|
|
|
->setDescription(t('E.g. Home, Business, Temporary'))
|
|
|
|
->setSetting('handler', 'default:taxonomy_term')
|
|
|
|
->setSetting('target_type', 'taxonomy_term')
|
|
|
|
->setSetting('handler_settings', [
|
|
|
|
'target_bundles' => [
|
2018-04-06 11:43:25 +00:00
|
|
|
'contact_details_types' => 'contact_details_types',
|
2018-04-06 11:05:05 +00:00
|
|
|
],
|
|
|
|
'auto_create' => 'true'
|
|
|
|
])
|
|
|
|
->setDisplayOptions('form', [
|
|
|
|
'type' => 'entity_reference_autocomplete',
|
|
|
|
'weight' => 5,
|
|
|
|
'settings' => [
|
|
|
|
'match_operator' => 'CONTAINS',
|
|
|
|
'size' => '60',
|
|
|
|
'placeholder' => '',
|
|
|
|
],
|
|
|
|
])
|
|
|
|
->setDisplayOptions('view', [
|
|
|
|
'settings' => ['link' => 'false'],
|
|
|
|
'type' => 'entity_reference_label',
|
|
|
|
'label' => 'above',
|
|
|
|
'weight' => 0,
|
|
|
|
])
|
|
|
|
->setDisplayConfigurable('view', TRUE)
|
|
|
|
->setRequired(TRUE);
|
|
|
|
|
|
|
|
|
2018-04-06 09:14:12 +00:00
|
|
|
$fields['person'] = BaseFieldDefinition::create('entity_reference')
|
|
|
|
->setLabel(t('Person'))
|
|
|
|
->setDescription(t('The person this profile is of.'))
|
|
|
|
->setSetting('target_type', 'person')
|
|
|
|
->setSetting('handler', 'views')
|
|
|
|
->setSetting('handler_settings', [
|
|
|
|
'view' => [
|
|
|
|
'view_name' => 'persons',
|
|
|
|
'display_name' => 'entity_reference_1',
|
|
|
|
'arguments' => []
|
|
|
|
]
|
|
|
|
])
|
|
|
|
->setDisplayOptions('form', [
|
|
|
|
'type' => 'entity_reference_autocomplete',
|
|
|
|
'weight' => 5,
|
|
|
|
'settings' => [
|
|
|
|
'match_operator' => 'CONTAINS',
|
|
|
|
'size' => '60',
|
|
|
|
'autocomplete_type' => 'tags',
|
|
|
|
'placeholder' => '',
|
|
|
|
],
|
|
|
|
])
|
|
|
|
->setDisplayOptions('view', [
|
|
|
|
'label' => 'above',
|
|
|
|
'weight' => 0,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$fields['name'] = BaseFieldDefinition::create('string')
|
|
|
|
->setLabel(t('Name'))
|
|
|
|
->setDescription(t('The name of the Contact Details entity.'))
|
|
|
|
->setRevisionable(TRUE)
|
|
|
|
->setSettings([
|
|
|
|
'max_length' => 50,
|
|
|
|
'text_processing' => 0,
|
|
|
|
])
|
|
|
|
->setDisplayOptions('view', [
|
|
|
|
'label' => 'above',
|
|
|
|
'type' => 'string',
|
|
|
|
'weight' => -4,
|
|
|
|
])
|
|
|
|
->setDisplayOptions('form', [
|
|
|
|
'type' => 'string_textfield',
|
|
|
|
'weight' => -4,
|
2018-04-06 11:43:25 +00:00
|
|
|
]);
|
2018-04-06 09:14:12 +00:00
|
|
|
|
|
|
|
$fields['status'] = BaseFieldDefinition::create('boolean')
|
|
|
|
->setLabel(t('Publishing status'))
|
|
|
|
->setDescription(t('A boolean indicating whether the Contact Details 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|