Overview

Namespaces

  • Thelia
    • Action
    • Config
    • Controller
    • Core
      • Bundle
      • DependencyInjection
        • Compiler
        • Loader
      • Event
      • EventListener
      • Template
        • BaseParam
    • Exception
    • Log
      • Destination
    • Model
      • map
      • om
    • Routing
      • Matcher
    • Tools
    • Tpex
      • BaseParam
      • Element
        • Loop
        • TestLoop
      • Event
      • Exception
      • Filter
      • Tokenizer

Classes

  • AccessoryTableMap
  • AddressTableMap
  • AdminGroupTableMap
  • AdminLogTableMap
  • AdminTableMap
  • AreaTableMap
  • AttributeAvI18nTableMap
  • AttributeAvTableMap
  • AttributeCategoryTableMap
  • AttributeCombinationTableMap
  • AttributeI18nTableMap
  • AttributeTableMap
  • CategoryI18nTableMap
  • CategoryTableMap
  • CategoryVersionTableMap
  • CombinationTableMap
  • ConfigI18nTableMap
  • ConfigTableMap
  • ContentAssocTableMap
  • ContentFolderTableMap
  • ContentI18nTableMap
  • ContentTableMap
  • ContentVersionTableMap
  • CountryI18nTableMap
  • CountryTableMap
  • CouponOrderTableMap
  • CouponRuleTableMap
  • CouponTableMap
  • CurrencyTableMap
  • CustomerTableMap
  • CustomerTitleI18nTableMap
  • CustomerTitleTableMap
  • DelivzoneTableMap
  • DocumentI18nTableMap
  • DocumentTableMap
  • FeatureAvI18nTableMap
  • FeatureAvTableMap
  • FeatureCategoryTableMap
  • FeatureI18nTableMap
  • FeatureProdTableMap
  • FeatureTableMap
  • FolderI18nTableMap
  • FolderTableMap
  • FolderVersionTableMap
  • GroupI18nTableMap
  • GroupModuleTableMap
  • GroupResourceTableMap
  • GroupTableMap
  • ImageI18nTableMap
  • ImageTableMap
  • LangTableMap
  • MessageI18nTableMap
  • MessageTableMap
  • MessageVersionTableMap
  • ModuleI18nTableMap
  • ModuleTableMap
  • OrderAddressTableMap
  • OrderFeatureTableMap
  • OrderProductTableMap
  • OrderStatusI18nTableMap
  • OrderStatusTableMap
  • OrderTableMap
  • ProductCategoryTableMap
  • ProductI18nTableMap
  • ProductTableMap
  • ProductVersionTableMap
  • ResourceI18nTableMap
  • ResourceTableMap
  • RewritingTableMap
  • StockTableMap
  • TaxI18nTableMap
  • TaxRuleCountryTableMap
  • TaxRuleI18nTableMap
  • TaxRuleTableMap
  • TaxTableMap
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace Thelia\Model\map;
 4: 
 5: use \RelationMap;
 6: use \TableMap;
 7: 
 8: 
 9: /**
10:  * This class defines the structure of the 'order_address' table.
11:  *
12:  *
13:  *
14:  * This map class is used by Propel to do runtime db structure discovery.
15:  * For example, the createSelectSql() method checks the type of a given column used in an
16:  * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
17:  * (i.e. if it's a text column type).
18:  *
19:  * @package    propel.generator.Thelia.Model.map
20:  */
21: class OrderAddressTableMap extends TableMap
22: {
23: 
24:     /**
25:      * The (dot-path) name of this class
26:      */
27:     const CLASS_NAME = 'Thelia.Model.map.OrderAddressTableMap';
28: 
29:     /**
30:      * Initialize the table attributes, columns and validators
31:      * Relations are not initialized by this method since they are lazy loaded
32:      *
33:      * @return void
34:      * @throws PropelException
35:      */
36:     public function initialize()
37:     {
38:         // attributes
39:         $this->setName('order_address');
40:         $this->setPhpName('OrderAddress');
41:         $this->setClassname('Thelia\\Model\\OrderAddress');
42:         $this->setPackage('Thelia.Model');
43:         $this->setUseIdGenerator(true);
44:         // columns
45:         $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
46:         $this->addColumn('customer_title_id', 'CustomerTitleId', 'INTEGER', false, null, null);
47:         $this->addColumn('company', 'Company', 'VARCHAR', false, 255, null);
48:         $this->addColumn('firstname', 'Firstname', 'VARCHAR', true, 255, null);
49:         $this->addColumn('lastname', 'Lastname', 'VARCHAR', true, 255, null);
50:         $this->addColumn('address1', 'Address1', 'VARCHAR', true, 255, null);
51:         $this->addColumn('address2', 'Address2', 'VARCHAR', false, 255, null);
52:         $this->addColumn('address3', 'Address3', 'VARCHAR', false, 255, null);
53:         $this->addColumn('zipcode', 'Zipcode', 'VARCHAR', true, 10, null);
54:         $this->addColumn('city', 'City', 'VARCHAR', true, 255, null);
55:         $this->addColumn('phone', 'Phone', 'VARCHAR', false, 20, null);
56:         $this->addColumn('country_id', 'CountryId', 'INTEGER', true, null, null);
57:         $this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
58:         $this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
59:         // validators
60:     } // initialize()
61: 
62:     /**
63:      * Build the RelationMap objects for this table relationships
64:      */
65:     public function buildRelations()
66:     {
67:         $this->addRelation('OrderRelatedByAddressInvoice', 'Thelia\\Model\\Order', RelationMap::ONE_TO_MANY, array('id' => 'address_invoice', ), 'SET NULL', 'RESTRICT', 'OrdersRelatedByAddressInvoice');
68:         $this->addRelation('OrderRelatedByAddressDelivery', 'Thelia\\Model\\Order', RelationMap::ONE_TO_MANY, array('id' => 'address_delivery', ), 'SET NULL', 'RESTRICT', 'OrdersRelatedByAddressDelivery');
69:     } // buildRelations()
70: 
71:     /**
72:      *
73:      * Gets the list of behaviors registered for this table
74:      *
75:      * @return array Associative array (name => parameters) of behaviors
76:      */
77:     public function getBehaviors()
78:     {
79:         return array(
80:             'timestampable' =>  array (
81:   'create_column' => 'created_at',
82:   'update_column' => 'updated_at',
83:   'disable_updated_at' => 'false',
84: ),
85:         );
86:     } // getBehaviors()
87: 
88: } // OrderAddressTableMap
89: 
thelia API documentation generated by ApiGen 2.8.0