voucherserie_list.php

Go to the documentation of this file.
00001 <?php
00002 
00009 class VoucherSerie_List extends oxAdminList
00010 {
00011 
00017     protected $_sListClass = 'oxvoucherserie';
00018 
00024     protected $_sThisTemplate = 'voucherserie_list.tpl';
00025 
00029     public function deleteEntry()
00030     {
00031         // first we remove vouchers
00032         $oVoucherSerie = oxNew("oxvoucherserie");
00033         $oVoucherSerie->load($this->getEditObjectId());
00034         $oVoucherSerie->deleteVoucherList();
00035 
00036         parent::deleteEntry();
00037     }
00038 }