voucherserie_groups.php

Go to the documentation of this file.
00001 <?php
00002 
00009 class VoucherSerie_Groups extends oxAdminDetails
00010 {
00018     public function render()
00019     {
00020         parent::render();
00021 
00022         $soxId = $this->getEditObjectId();
00023         if ( $soxId != "-1" && isset( $soxId)) {
00024             // load object
00025             $oVoucherSerie = oxNew( "oxvoucherserie" );
00026             $oVoucherSerie->load( $soxId);
00027             $oVoucherSerie->setUserGroups();
00028             $this->_aViewData["edit"] =  $oVoucherSerie;
00029 
00030             //Disable editing for derived items
00031             if ($oVoucherSerie->isDerived())
00032                 $this->_aViewData['readonly'] = true;
00033         }
00034         if ( oxConfig::getParameter("aoc") ) {
00035             $oVoucherSerieGroupsAjax = oxNew( 'voucherserie_groups_ajax' );
00036             $this->_aViewData['oxajax'] = $oVoucherSerieGroupsAjax->getColumns();
00037 
00038             return "popups/voucherserie_groups.tpl";
00039         }
00040 
00041         return "voucherserie_groups.tpl";
00042     }
00043 }