OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
recommadd.php
Go to the documentation of this file.
1 <?php
2 
8 class RecommAdd extends Details
9 {
15  protected $_sThisTemplate = 'page/account/recommendationadd.tpl';
16 
22  protected $_aUserRecommList = null;
23 
29  public function render()
30  {
32  return $this->_sThisTemplate;
33  }
34 
40  public function getRecommLists()
41  {
42  if ( $this->_aUserRecommList === null ) {
43  $oUser = $this->getUser();
44  if ( $oUser) {
45  $this->_aUserRecommList = $oUser->getUserRecommLists();
46  }
47  }
49  }
50 
51 
52 }