\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 oc_organisation 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 static function baseFieldDefinitions(EntityTypeInterface $entity_type) { $fields = parent::baseFieldDefinitions($entity_type); // Add the published field. $fields += static::publishedBaseFieldDefinitions($entity_type); $fields['notes'] = BaseFieldDefinition::create('string_long') ->setRevisionable(TRUE) ->setLabel(t('Notes')) ->setSettings(array( 'default_value' => '', 'max_length' => 255, 'text_processing' => 0, )) ->setDisplayOptions('view', array( 'label' => 'above', 'type' => 'basic_string', 'weight' => 50, )) ->setDisplayOptions('form', array( 'type' => 'string_textarea', 'weight' => 50, )); $fields['website'] = BaseFieldDefinition::create('string') ->setLabel(t('Website')) ->setRevisionable(TRUE) ->setSettings([ 'max_length' => 50, 'text_processing' => 0, ]) ->setDefaultValue('') ->setDisplayOptions('view', [ 'label' => 'above', 'type' => 'string', 'weight' => 49, ]) ->setDisplayOptions('form', [ 'type' => 'string_textfield', 'weight' => 49, ]) ->setRequired(FALSE); $fields['contact_name'] = BaseFieldDefinition::create('string') ->setLabel(t('Contact Name')) ->setDescription(t('Name of the main contact for this organisation.')) ->setRevisionable(TRUE) ->setSettings([ 'max_length' => 50, 'text_processing' => 0, ]) ->setDefaultValue('') ->setDisplayOptions('view', [ 'label' => 'above', 'type' => 'string', 'weight' => 51, ]) ->setDisplayOptions('form', [ 'type' => 'string_textfield', 'weight' => 51, ]) ->setRequired(FALSE); $fields['contact_role'] = BaseFieldDefinition::create('string') ->setLabel(t('Contact Role')) ->setDescription(t('Role of the contact within the organisation')) ->setRevisionable(TRUE) ->setSettings([ 'max_length' => 50, 'text_processing' => 0, ]) ->setDefaultValue('') ->setDisplayOptions('view', [ 'label' => 'above', 'type' => 'string', 'weight' => 52, ]) ->setDisplayOptions('form', [ 'type' => 'string_textfield', 'weight' => 52, ]) ->setRequired(FALSE); $fields['email'] = BaseFieldDefinition::create('string') ->setLabel(t('Email Address')) ->setRevisionable(TRUE) ->setSettings(array( 'default_value' => '', 'max_length' => 100, 'text_processing' => 0, )) ->setDisplayOptions('view', array( 'label' => 'above', 'type' => 'string', 'weight' => 52, )) ->setDisplayOptions('form', array( 'type' => 'string_textfield', 'weight' => 52, )); $fields['phone'] = BaseFieldDefinition::create('string') ->setLabel(t('Phone Number')) ->setRevisionable(TRUE) ->setSettings(array( 'default_value' => '', 'max_length' => 20, 'text_processing' => 0, )) ->setDisplayOptions('view', array( 'label' => 'above', 'type' => 'string', 'weight' => 53, )) ->setDisplayOptions('form', array( 'type' => 'string_textfield', 'weight' => 53, )); $fields['postal_address'] = BaseFieldDefinition::create('string_long') ->setRevisionable(TRUE) ->setLabel(t('Postal Address')) ->setDescription(t('Full address, apart from post code.')) ->setSettings(array( 'default_value' => '', 'max_length' => 255, 'text_processing' => 0, )) ->setDisplayOptions('view', array( 'label' => 'above', 'type' => 'basic_string', 'weight' => 54, )) ->setDisplayOptions('form', array( 'type' => 'string_textarea', 'weight' => 54, )); $fields['post_code'] = BaseFieldDefinition::create('string') ->setRevisionable(TRUE) ->setLabel(t('Post Code')) ->setSettings(array( 'default_value' => '', 'max_length' => 10, 'text_processing' => 0, )) ->setDisplayOptions('view', array( 'label' => 'above', 'type' => 'string', 'weight' => 55, )) ->setDisplayOptions('form', array( 'type' => 'string_textfield', 'weight' => 55, )); $fields['billing_contact_name'] = BaseFieldDefinition::create('string') ->setLabel(t('Billing Contact Name')) ->setDescription(t('Name of the main contact for this client.')) ->setRevisionable(TRUE) ->setSettings([ 'max_length' => 50, 'text_processing' => 0, ]) ->setDefaultValue('') ->setDisplayOptions('view', [ 'label' => 'above', 'type' => 'string', 'weight' => 56, ]) ->setDisplayOptions('form', [ 'type' => 'string_textfield', 'weight' => 56, ]) ->setRequired(FALSE); $fields['billing_email'] = BaseFieldDefinition::create('string') ->setLabel(t('Billing Email Address')) ->setRevisionable(TRUE) ->setSettings(array( 'default_value' => '', 'max_length' => 100, 'text_processing' => 0, )) ->setDisplayOptions('view', array( 'label' => 'above', 'type' => 'string', 'weight' => 57, )) ->setDisplayOptions('form', array( 'type' => 'string_textfield', 'weight' => 57, )); $fields['billing_phone'] = BaseFieldDefinition::create('string') ->setLabel(t('Billing Phone Number')) ->setRevisionable(TRUE) ->setSettings(array( 'default_value' => '', 'max_length' => 20, 'text_processing' => 0, )) ->setDisplayOptions('view', array( 'label' => 'above', 'type' => 'string', 'weight' => 58, )) ->setDisplayOptions('form', array( 'type' => 'string_textfield', 'weight' => 58, )); $fields['billing_postal_address'] = BaseFieldDefinition::create('string_long') ->setRevisionable(TRUE) ->setLabel(t('Billing Postal Address')) ->setDescription(t('Full address, apart from post code.')) ->setSettings(array( 'default_value' => '', 'max_length' => 255, 'text_processing' => 0, )) ->setDisplayOptions('view', array( 'label' => 'above', 'type' => 'basic_string', 'weight' => 59, )) ->setDisplayOptions('form', array( 'type' => 'string_textarea', 'weight' => 59, )); $fields['billing_post_code'] = BaseFieldDefinition::create('string') ->setRevisionable(TRUE) ->setLabel(t('Billing Post Code')) ->setSettings(array( 'default_value' => '', 'max_length' => 10, 'text_processing' => 0, )) ->setDisplayOptions('view', array( 'label' => 'above', 'type' => 'string', 'weight' => 60, )) ->setDisplayOptions('form', array( 'type' => 'string_textfield', 'weight' => 60, )); $fields['user_id'] = BaseFieldDefinition::create('entity_reference') ->setLabel(t('Added by')) ->setRevisionable(TRUE) ->setSetting('target_type', 'user') ->setSetting('handler', 'default') ->setTranslatable(TRUE); $fields['name'] = BaseFieldDefinition::create('string') ->setLabel(t('Name')) ->setRevisionable(TRUE) ->setSettings([ 'max_length' => 50, 'text_processing' => 0, ]) ->setDefaultValue('') ->setDisplayOptions('view', [ 'label' => 'hidden', 'type' => 'string', 'weight' => -100, ]) ->setDisplayOptions('form', [ 'type' => 'string_textfield', 'weight' => -100, ]) ->setDisplayConfigurable('form', TRUE) ->setDisplayConfigurable('view', TRUE) ->setRequired(TRUE); $fields['status'] = BaseFieldDefinition::create('boolean') ->setLabel(t('Published')) ->setDescription('If this box is not ticked this record will be hidden from view for most users. Users with access to unpublished entities will be able to restore it if needed.') ->setRevisionable(TRUE) ->setDisplayConfigurable("form", true) ->setDefaultValue(TRUE); $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); $fields['files'] = BaseFieldDefinition::create('file') ->setLabel(t('Files')) ->setDescription(t('Files relating to this organisation')) ->setSetting('file_directory', '[date:custom:Y]-[date:custom:m]') ->setSetting('handler', 'default:file') ->setSetting('file_extensions', 'txt jpg jpeg gif rtf xls xlsx doc swf png pdf docx csv') ->setSetting('description_field', 'true') ->setSetting('uri_scheme', 'private') ->setCardinality(-1) ->setDisplayOptions('form', [ 'type' => 'file_generic', 'weight' => 61, 'settings' => [ 'progress_indicator' => 'throbber', ], ]) ->setDisplayOptions('view', [ 'label' => 'above', 'settings' => ['use_description_as_link_text' => 'true'] ]); return $fields; } }