00001 <?php
00002
00010 class VoucherSerie_Groups extends oxAdminDetails
00011 {
00019 public function render()
00020 {
00021 parent::render();
00022
00023 $soxId = oxConfig::getParameter( "oxid");
00024
00025
00026 if ( $soxId != "-1" && isset( $soxId)) {
00027
00028 $oVoucherSerie = oxNew( "oxvoucherserie" );
00029 $oVoucherSerie->load( $soxId);
00030 $oVoucherSerie->setUserGroups();
00031 $this->_aViewData["edit"] = $oVoucherSerie;
00032
00033
00034 if ($oVoucherSerie->isDerived())
00035 $this->_aViewData['readonly'] = true;
00036 }
00037 if ( oxConfig::getParameter("aoc") ) {
00038
00039 $aColumns = array();
00040 include_once 'inc/'.strtolower(__CLASS__).'.inc.php';
00041 $this->_aViewData['oxajax'] = $aColumns;
00042
00043 return "popups/voucherserie_groups.tpl";
00044 }
00045
00046 return "voucherserie_groups.tpl";
00047 }
00048 }