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