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