1: <?php
2:
3: namespace Thelia\Model\map;
4:
5: use \RelationMap;
6: use \TableMap;
7:
8:
9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20:
21: class ModuleTableMap extends TableMap
22: {
23:
24: 25: 26:
27: const CLASS_NAME = 'Thelia.Model.map.ModuleTableMap';
28:
29: 30: 31: 32: 33: 34: 35:
36: public function initialize()
37: {
38:
39: $this->setName('module');
40: $this->setPhpName('Module');
41: $this->setClassname('Thelia\\Model\\Module');
42: $this->setPackage('Thelia.Model');
43: $this->setUseIdGenerator(true);
44:
45: $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
46: $this->addColumn('code', 'Code', 'VARCHAR', true, 55, null);
47: $this->addColumn('type', 'Type', 'TINYINT', true, null, null);
48: $this->addColumn('activate', 'Activate', 'TINYINT', false, null, null);
49: $this->addColumn('position', 'Position', 'INTEGER', false, null, null);
50: $this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
51: $this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
52:
53: }
54:
55: 56: 57:
58: public function buildRelations()
59: {
60: $this->addRelation('GroupModule', 'Thelia\\Model\\GroupModule', RelationMap::ONE_TO_MANY, array('id' => 'module_id', ), 'CASCADE', 'RESTRICT', 'GroupModules');
61: $this->addRelation('ModuleI18n', 'Thelia\\Model\\ModuleI18n', RelationMap::ONE_TO_MANY, array('id' => 'id', ), 'CASCADE', null, 'ModuleI18ns');
62: }
63:
64: 65: 66: 67: 68: 69:
70: public function getBehaviors()
71: {
72: return array(
73: 'timestampable' => array (
74: 'create_column' => 'created_at',
75: 'update_column' => 'updated_at',
76: 'disable_updated_at' => 'false',
77: ),
78: 'i18n' => array (
79: 'i18n_table' => '%TABLE%_i18n',
80: 'i18n_phpname' => '%PHPNAME%I18n',
81: 'i18n_columns' => 'title, description, chapo, postscriptum',
82: 'i18n_pk_name' => NULL,
83: 'locale_column' => 'locale',
84: 'default_locale' => NULL,
85: 'locale_alias' => '',
86: ),
87: );
88: }
89:
90: }
91: