Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. //prestashop
  3. //override/classes/State.php
  4. class State extends StateCore
  5. {
  6.  
  7.   public static $definition = array(
  8.         'table' => 'state',
  9.         'primary' => 'id_state',
  10.         'fields' => array(
  11.             'id_country' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true),
  12.             'id_zone' =>    array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true),
  13.             'iso_code' =>   array('type' => self::TYPE_STRING, 'validate' => 'isStateIsoCode', 'required' => true, 'size' => 28),
  14.             'name' =>       array('type' => self::TYPE_STRING, 'validate' => 'isGenericName', 'required' => true, 'size' => 180),
  15.             'active' =>     array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),
  16.         ),
  17.     );
  18.  
  19. }