OXID eShop CE  4.10.7
 All Classes Namespaces Files Functions Variables Pages
recommadd.php
Go to the documentation of this file.
1 <?php
2 
10 class RecommAdd extends Details
11 {
12 
18  protected $_sThisTemplate = 'page/account/recommendationadd.tpl';
19 
25  protected $_aUserRecommList = null;
26 
32  public function render()
33  {
35 
36  return $this->_sThisTemplate;
37  }
38 
44  public function getRecommLists()
45  {
46  if ($this->_aUserRecommList === null) {
47  $oUser = $this->getUser();
48  if ($oUser) {
49  $this->_aUserRecommList = $oUser->getUserRecommLists();
50  }
51  }
52 
54  }
55 
61  public function getTitle()
62  {
63  $oProduct = $this->getProduct();
64 
65  return $oProduct->oxarticles__oxtitle->value . ' ' . $oProduct->oxarticles__oxvarselect->value;
66  }
67 }