public function TreeNode::setSequence in Ubercart 8.4
Sets the sequence of the term.
Parameters
int $sequence: The term's sequence.
Return value
$this
File
- uc_catalog/
src/ TreeNode.php, line 157
Class
- TreeNode
- Data structure to mimic Drupal's menu system.
Namespace
Drupal\uc_catalogCode
public function setSequence($sequence) {
$this->sequence = $sequence;
return $this;
}