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