* @link http://www.oxidmodule.com */ class d3_dev_oxbasketitem extends d3_dev_oxbasketitem_parent { public function d3ClearArticle() { $this->_oArticle = null; } /** * @return string * @throws \OxidEsales\EshopCommunity\Application\Model\oxArticleException * @throws \OxidEsales\Eshop\Core\Exception\StandardException * @throws oxNoArticleException */ public function getTitle() { $oArticle = $this->getArticle(); $this->_sTitle = $oArticle->oxarticles__oxtitle->value; if ($oArticle->oxarticles__oxvarselect->value) { $this->_sTitle = $this->_sTitle . ', ' . $this->getVarSelect(); } return $this->_sTitle; } }