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