00001 <?php 00002 00006 class User_Overview extends oxAdminDetails 00007 { 00008 00015 public function render() 00016 { 00017 parent::render(); 00018 00019 $soxId = $this->getEditObjectId(); 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 }