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