OXID eShop CE  4.10.7
 All Classes Namespaces Files Functions Variables Pages
article_userdef.php
Go to the documentation of this file.
1 <?php
2 
7 {
8 
15  public function render()
16  {
18 
19  $oArticle = oxNew("oxarticle");
20  $this->_aViewData["edit"] = $oArticle;
21 
22  $soxId = $this->getEditObjectId();
23  if ($soxId != "-1" && isset($soxId)) {
24 
25  // load object
26  $oArticle->load($soxId);
27  }
28 
29  return "article_userdef.tpl";
30  }
31 }