You are here

public function MappedObject::pushDelete in Salesforce Suite 8.3

Same name and namespace in other branches
  1. 8.4 modules/salesforce_mapping/src/Entity/MappedObject.php \Drupal\salesforce_mapping\Entity\MappedObject::pushDelete()
  2. 5.0.x modules/salesforce_mapping/src/Entity/MappedObject.php \Drupal\salesforce_mapping\Entity\MappedObject::pushDelete()

Delete the mapped SF object in Salesforce.

Return value

$this

Overrides MappedObjectInterface::pushDelete

File

modules/salesforce_mapping/src/Entity/MappedObject.php, line 450

Class

MappedObject
Defines a Salesforce Mapped Object entity class.

Namespace

Drupal\salesforce_mapping\Entity

Code

public function pushDelete() {
  $mapping = $this
    ->getMapping();
  $this
    ->client()
    ->objectDelete($mapping
    ->getSalesforceObjectType(), $this
    ->sfid());
  $this
    ->setNewRevision(TRUE);
  $this
    ->set('last_sync_action', 'push_delete')
    ->set('last_sync_status', TRUE)
    ->save();
  return $this;
}