discountGeneratorConfiguration.class.php 620 Bytes
Newer Older
Яков's avatar
first  
Яков committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php

/**
 * discount module configuration.
 *
 * @package    sf
 * @subpackage discount
 * @author     Atma
 * @version    SVN: $Id: configuration.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
 */
class discountGeneratorConfiguration extends BaseDiscountGeneratorConfiguration
{
    public function getFormActions()
    {
        return array( '_list' => NULL,  '_save' => NULL,  '_save_and_add' => NULL,  '_save_and_list' => NULL,);
    }
    public function getListObjectActions()
    {
        return array( '_edit' => NULL,);
    }
    public function getListBatchActions()
    {
        return array();
    }
}