OXID eShop CE  4.9.7
 All Classes Files Functions Variables Pages
user_article.php
Go to the documentation of this file.
1 <?php
2 
9 {
10 
17  public function render()
18  {
20 
21  $soxId = $this->getEditObjectId();
22  if ($soxId && $soxId != '-1') {
23  // load object
24  $oArticlelist = oxNew('oxorderarticlelist');
25  $oArticlelist->loadOrderArticlesForUser($soxId);
26 
27  $this->_aViewData['oArticlelist'] = $oArticlelist;
28  }
29 
30  return 'user_article.tpl';
31  }
32 }