Export.class.php 801 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
<?php

/**
 * Export
 * 
 * This class has been auto-generated by the Doctrine ORM Framework
 * 
 * @package    sf
 * @subpackage model
 * @author     Atma
 * @version    SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $
 */
class Export extends BaseExport
{
    public function getLogicTypeRu()
    {
        $logic_type = self::getLogicTypeVars();
        return isset($logic_type[$this->getLogicType()]) ? $logic_type[$this->getLogicType()] : $this->getLogicType();
    }

    public static function getLogicTypeVars()
    {
        $logic_type = array(
            'bid' => 'Оформленная сразу',
            'wait' => 'Буду копить',
            'bid_after_wait' => 'Оформлена после накопления'
        );

        return $logic_type;
    }
}