OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
voucherserie_list.php
Go to the documentation of this file.
1 <?php
2 
10 {
16  protected $_sListClass = 'oxvoucherserie';
17 
22  protected $_sThisTemplate = 'voucherserie_list.tpl';
23 
29  public function deleteEntry()
30  {
31  // first we remove vouchers
32  $oVoucherSerie = oxNew( "oxvoucherserie" );
33  $oVoucherSerie->load( $this->getEditObjectId() );
34  $oVoucherSerie->deleteVoucherList();
35 
37  }
38 }