voucherserie_groups.php

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