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
00025 $oVoucherSerie = oxNew( "oxvoucherserie" );
00026 $oVoucherSerie->load( $soxId);
00027 $oVoucherSerie->setUserGroups();
00028 $this->_aViewData["edit"] = $oVoucherSerie;
00029
00030
00031 if ($oVoucherSerie->isDerived())
00032 $this->_aViewData['readonly'] = true;
00033 }
00034 if ( oxConfig::getParameter("aoc") ) {
00035
00036 $aColumns = array();
00037 include_once 'inc/'.strtolower(__CLASS__).'.inc.php';
00038 $this->_aViewData['oxajax'] = $aColumns;
00039
00040 return "popups/voucherserie_groups.tpl";
00041 }
00042
00043 return "voucherserie_groups.tpl";
00044 }
00045 }