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