00001 <?php 00002 00007 class User_Overview extends oxAdminDetails 00008 { 00015 public function render() 00016 { 00017 parent::render(); 00018 00019 $soxId = oxConfig::getParameter( "oxid"); 00020 if ( $soxId != "-1" && isset( $soxId)) { 00021 // load object 00022 $oUser = oxNew( "oxuser" ); 00023 $oUser->load( $soxId); 00024 $this->_aViewData["edit"] = $oUser; 00025 } 00026 00027 return "user_overview.tpl"; 00028 } 00029 }