Overview

Namespaces

  • Thelia
    • Action
    • Controller
    • Core
      • Bundle
      • Event
      • EventListener
      • Template
    • Exception
    • Log
      • Destination
    • Model
      • map
      • om
    • Routing
      • Matcher
    • Tools
    • Tpex
      • Loop

Classes

  • AccessoryTableMap
  • AddressTableMap
  • AdminGroupTableMap
  • AdminLogTableMap
  • AdminTableMap
  • AreaTableMap
  • AttributeAvDescTableMap
  • AttributeAvI18nTableMap
  • AttributeAvTableMap
  • AttributeCategoryTableMap
  • AttributeCombinationTableMap
  • AttributeDescTableMap
  • AttributeI18nTableMap
  • AttributeTableMap
  • CategoryDescTableMap
  • CategoryI18nTableMap
  • CategoryTableMap
  • CategoryVersionTableMap
  • CombinationTableMap
  • ConfigDescTableMap
  • ConfigI18nTableMap
  • ConfigTableMap
  • ContentAssocTableMap
  • ContentDescTableMap
  • ContentFolderTableMap
  • ContentI18nTableMap
  • ContentTableMap
  • ContentVersionTableMap
  • CountryDescTableMap
  • CountryI18nTableMap
  • CountryTableMap
  • CouponOrderTableMap
  • CouponRuleTableMap
  • CouponTableMap
  • CurrencyTableMap
  • CustomerTableMap
  • CustomerTitleDescTableMap
  • CustomerTitleI18nTableMap
  • CustomerTitleTableMap
  • DelivzoneTableMap
  • DocumentDescTableMap
  • DocumentI18nTableMap
  • DocumentTableMap
  • FeatureAvDescTableMap
  • FeatureAvI18nTableMap
  • FeatureAvTableMap
  • FeatureCategoryTableMap
  • FeatureDescTableMap
  • FeatureI18nTableMap
  • FeatureProdTableMap
  • FeatureTableMap
  • FolderDescTableMap
  • FolderI18nTableMap
  • FolderTableMap
  • FolderVersionTableMap
  • GroupDescTableMap
  • GroupI18nTableMap
  • GroupModuleTableMap
  • GroupResourceTableMap
  • GroupTableMap
  • ImageDescTableMap
  • ImageI18nTableMap
  • ImageTableMap
  • LangTableMap
  • MessageDescTableMap
  • MessageI18nTableMap
  • MessageTableMap
  • MessageVersionTableMap
  • ModuleDescTableMap
  • ModuleI18nTableMap
  • ModuleTableMap
  • OrderAddressTableMap
  • OrderFeatureTableMap
  • OrderProductTableMap
  • OrderStatusDescTableMap
  • OrderStatusI18nTableMap
  • OrderStatusTableMap
  • OrderTableMap
  • ProductCategoryTableMap
  • ProductDescTableMap
  • ProductI18nTableMap
  • ProductTableMap
  • ProductVersionTableMap
  • ResourceDescTableMap
  • ResourceI18nTableMap
  • ResourceTableMap
  • RewritingTableMap
  • StockTableMap
  • TaxDescTableMap
  • TaxI18nTableMap
  • TaxRuleCountryTableMap
  • TaxRuleDescTableMap
  • 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 'category' 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 CategoryTableMap extends TableMap
 22: {
 23: 
 24:     /**
 25:      * The (dot-path) name of this class
 26:      */
 27:     const CLASS_NAME = 'Thelia.Model.map.CategoryTableMap';
 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('category');
 40:         $this->setPhpName('Category');
 41:         $this->setClassname('Thelia\\Model\\Category');
 42:         $this->setPackage('Thelia.Model');
 43:         $this->setUseIdGenerator(true);
 44:         // columns
 45:         $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
 46:         $this->addColumn('parent', 'Parent', 'INTEGER', false, null, null);
 47:         $this->addColumn('link', 'Link', 'VARCHAR', false, 255, null);
 48:         $this->addColumn('visible', 'Visible', 'TINYINT', true, null, null);
 49:         $this->addColumn('position', 'Position', 'INTEGER', true, null, null);
 50:         $this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
 51:         $this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
 52:         $this->addColumn('version', 'Version', 'INTEGER', false, null, 0);
 53:         $this->addColumn('version_created_at', 'VersionCreatedAt', 'TIMESTAMP', false, null, null);
 54:         $this->addColumn('version_created_by', 'VersionCreatedBy', 'VARCHAR', false, 100, null);
 55:         // validators
 56:     } // initialize()
 57: 
 58:     /**
 59:      * Build the RelationMap objects for this table relationships
 60:      */
 61:     public function buildRelations()
 62:     {
 63:         $this->addRelation('ProductCategory', 'Thelia\\Model\\ProductCategory', RelationMap::ONE_TO_MANY, array('id' => 'category_id', ), 'CASCADE', 'RESTRICT', 'ProductCategorys');
 64:         $this->addRelation('FeatureCategory', 'Thelia\\Model\\FeatureCategory', RelationMap::ONE_TO_MANY, array('id' => 'category_id', ), 'CASCADE', 'RESTRICT', 'FeatureCategorys');
 65:         $this->addRelation('AttributeCategory', 'Thelia\\Model\\AttributeCategory', RelationMap::ONE_TO_MANY, array('id' => 'category_id', ), 'CASCADE', 'RESTRICT', 'AttributeCategorys');
 66:         $this->addRelation('ContentAssoc', 'Thelia\\Model\\ContentAssoc', RelationMap::ONE_TO_MANY, array('id' => 'category_id', ), 'CASCADE', 'RESTRICT', 'ContentAssocs');
 67:         $this->addRelation('Image', 'Thelia\\Model\\Image', RelationMap::ONE_TO_MANY, array('id' => 'category_id', ), 'CASCADE', 'RESTRICT', 'Images');
 68:         $this->addRelation('Document', 'Thelia\\Model\\Document', RelationMap::ONE_TO_MANY, array('id' => 'category_id', ), 'CASCADE', 'RESTRICT', 'Documents');
 69:         $this->addRelation('Rewriting', 'Thelia\\Model\\Rewriting', RelationMap::ONE_TO_MANY, array('id' => 'category_id', ), 'CASCADE', 'RESTRICT', 'Rewritings');
 70:         $this->addRelation('CategoryI18n', 'Thelia\\Model\\CategoryI18n', RelationMap::ONE_TO_MANY, array('id' => 'id', ), 'CASCADE', null, 'CategoryI18ns');
 71:         $this->addRelation('CategoryVersion', 'Thelia\\Model\\CategoryVersion', RelationMap::ONE_TO_MANY, array('id' => 'id', ), 'CASCADE', null, 'CategoryVersions');
 72:     } // buildRelations()
 73: 
 74:     /**
 75:      *
 76:      * Gets the list of behaviors registered for this table
 77:      *
 78:      * @return array Associative array (name => parameters) of behaviors
 79:      */
 80:     public function getBehaviors()
 81:     {
 82:         return array(
 83:             'timestampable' =>  array (
 84:   'create_column' => 'created_at',
 85:   'update_column' => 'updated_at',
 86:   'disable_updated_at' => 'false',
 87: ),
 88:             'i18n' =>  array (
 89:   'i18n_table' => '%TABLE%_i18n',
 90:   'i18n_phpname' => '%PHPNAME%I18n',
 91:   'i18n_columns' => 'title, description, chapo, postscriptum',
 92:   'i18n_pk_name' => NULL,
 93:   'locale_column' => 'locale',
 94:   'default_locale' => NULL,
 95:   'locale_alias' => '',
 96: ),
 97:             'versionable' =>  array (
 98:   'version_column' => 'version',
 99:   'version_table' => '',
100:   'log_created_at' => 'true',
101:   'log_created_by' => 'true',
102:   'log_comment' => 'false',
103:   'version_created_at_column' => 'version_created_at',
104:   'version_created_by_column' => 'version_created_by',
105:   'version_comment_column' => 'version_comment',
106: ),
107:         );
108:     } // getBehaviors()
109: 
110: } // CategoryTableMap
111: 
thelia API documentation generated by ApiGen 2.8.0