payment_overview.php

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