You are here

public function Webform::getWeight in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Entity/Webform.php \Drupal\webform\Entity\Webform::getWeight()

Returns the webform's weight.

Only applies to when multiple webforms are attached to a single node.

Return value

int The webform's weight.

Overrides WebformInterface::getWeight

File

src/Entity/Webform.php, line 510

Class

Webform
Defines the webform entity.

Namespace

Drupal\webform\Entity

Code

public function getWeight() {
  return $this->weight;
}