pageGeneratorConfiguration.class.php 685 Bytes
Newer Older
Игорь's avatar
init    
Игорь 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
26
27
28
29
30
31
32
<?php

/**
 * page module configuration.
 *
 * @package    chrisal
 * @subpackage page
 * @author     SyLord
 * @version    SVN: $Id: configuration.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
 */
class pageGeneratorConfiguration extends BasePageGeneratorConfiguration
{
    public function getListActions()
    {
        return array();
    }

    public function getListBatchActions()
    {
        return array();
    }

    public function getListObjectActions()
    {
        return array('_edit' => NULL);
    }

    public function getFormActions()
    {
        return array(  '_list' => NULL,  '_save' => NULL,  '_save_and_add' => NULL,  '_save_and_list' => NULL);
    }
}