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