*/
public $packageID = 0;
+ /**
+ * language item with the page title
+ * @var string
+ */
+ public $pageTitle = '';
+
/**
* id of the parent category id
* @var integer
'showOrder' => $this->showOrder,
'title' => $this->title
));
+
+ if ($this->pageTitle) {
+ WCF::getTPL()->assign('pageTitle', $this->pageTitle);
+ }
}
/**
*/
public $editController = '';
+ /**
+ * language item with the page title
+ * @var string
+ */
+ public $pageTitle = '';
+
/**
* category object type object
* @var wcf\data\object\type\ObjectType
'editController' => $this->editController,
'objectType' => $this->objectType
));
+
+ if ($this->pageTitle) {
+ WCF::getTPL()->assign('pageTitle', $this->pageTitle);
+ }
}
/**