You are here

public function TransactionOperation::getTransactionTypeId in Transaction 8

Gets the transaction type ID to which the operation belongs.

Return value

string The transaction type ID.

Overrides TransactionOperationInterface::getTransactionTypeId

2 calls to TransactionOperation::getTransactionTypeId()
TransactionOperation::calculateDependencies in src/Entity/TransactionOperation.php
Calculates dependencies and stores them in the dependency property.
TransactionOperation::urlRouteParameters in src/Entity/TransactionOperation.php
Gets an array of placeholders for this entity.

File

src/Entity/TransactionOperation.php, line 89

Class

TransactionOperation
Transaction operations provide templates that describe transactions.

Namespace

Drupal\transaction\Entity

Code

public function getTransactionTypeId() {
  return $this->transaction_type;
}