\Drupal::currentUser()->id(), ]; } public function deleteCaseProvisions(): void { $this->deleteChildren('oc_case_provision'); } public function deleteActivities(): void { $this->deleteChildren('oc_activity'); } public function deleteChildren($child_entity_type):void { $query = \Drupal::entityQuery($child_entity_type) ->condition('oc_case.target_id', $this->id()); $ids = $query->execute(); foreach($ids as $id) { \Drupal::entityTypeManager() ->getStorage($child_entity_type) ->load($id)->delete(); } } public static function defaultTarget() { if (opencase_entities_get('target_id')) return [opencase_entities_get('target_id')]; else return []; } /** * {@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_case 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; } public function addToTotalFee(float $amountToAdd): void { $this->set('total_fee', $this->total_fee->value + $amountToAdd); $this->save(); } /** * {@inheritdoc} */ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) { $fields = parent::baseFieldDefinitions($entity_type); // not currently used. Will add form and view settings when ready $fields['status'] = BaseFieldDefinition::create('boolean') ->setLabel(t('Visible')) ->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) ->setDisplayConfigurable('view', true) ->setDefaultValue(TRUE); $fields['user_id'] = BaseFieldDefinition::create('entity_reference') ->setLabel(t('Created by')) ->setDescription(t('The user ID of author of the Case entity.')) ->setRevisionable(TRUE) ->setSetting('target_type', 'user') ->setSetting('handler', 'default') ->setTranslatable(TRUE) ->setDisplayConfigurable('form', true) ->setDisplayConfigurable('view', true); $fields['oc_target'] = BaseFieldDefinition::create('entity_reference') ->setLabel(t('Target')) ->setRevisionable(TRUE) ->setSetting('target_type', 'oc_actor') ->setSetting('handler', 'default') ->setDefaultValueCallback('\Drupal\opencase_cases\Entity\OCCase::defaultTarget') ->setDisplayConfigurable('form', true) ->setDisplayConfigurable('view', true); $fields['name'] = BaseFieldDefinition::create('string') ->setLabel(t('Title')) ->setRevisionable(TRUE) ->setSettings([ 'max_length' => 120, 'text_processing' => 0, ]) ->setDefaultValue('') ->setDisplayConfigurable('form', true) ->setDisplayConfigurable('view', true) ->setRequired(TRUE); $fields['files'] = BaseFieldDefinition::create('file') ->setLabel(t('Files')) ->setDescription(t('Files attached to this case')) ->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) ->setDisplayConfigurable('form', true) ->setDisplayConfigurable('view', true); $fields['created'] = BaseFieldDefinition::create('created') ->setLabel(t('Created on')) ->setDescription(t('When the case was created.')) ->setDisplayConfigurable('view', true); $fields['changed'] = BaseFieldDefinition::create('changed') ->setLabel(t('Last updated')) ->setDescription(t('When the case was last edited.')) ->setDisplayConfigurable('view', true); $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['notes'] = BaseFieldDefinition::create('string_long') ->setRevisionable(TRUE) ->setLabel(t('Notes')) ->setSettings(array( 'default_value' => '', 'max_length' => 255, 'text_processing' => 0, )) ->setDisplayConfigurable('form', true) ->setDisplayConfigurable('view', true); $fields['total_fee'] = BaseFieldDefinition::create('decimal') ->setLabel(t('Total Fee')) ->setRevisionable(TRUE) ->setSettings([ 'prefix' => '£', ]) ->setDisplayConfigurable('view', true); return $fields; } }