DB_DataObject_FormBuilder
[ class tree: DB_DataObject_FormBuilder ] [ index: DB_DataObject_FormBuilder ] [ all elements ]

Source for file Product.php

Documentation is available at Product.php

  1. <?php
  2. /**
  3.  * Table Definition for product
  4.  */
  5. require_once 'DB/DataObject.php';
  6.  
  7. class Product extends DB_DataObject 
  8. {
  9.  
  10.     ###START_AUTOCODE
  11.     /* the code below is auto generated do not remove the above tag */
  12.  
  13.     var $__table 'product';                         // table name
  14.     var $product_id;                      // int(10)  not_null primary_key unsigned auto_increment
  15.     var $title;                           // string(80)  not_null
  16.     var $article_number;                  // string(40)  
  17.     var $description;                     // blob(65535)  blob
  18.     var $manufacturer_ID;                 // int(10)  not_null multiple_key unsigned
  19.     var $category_ID;                     // int(10)  not_null multiple_key unsigned
  20.  
  21.     /* ZE2 compatibility trick*/
  22.     function __clone(return $this;}
  23.  
  24.     /* Static get */
  25.     function staticGet($k,$v=NULLreturn DB_DataObject::staticGet('Product',$k,$v)}
  26.  
  27.     /* the code above is auto generated do not remove the tag below */
  28.     ###END_AUTOCODE
  29. }
  30. ?>

Documentation generated on Mon, 11 Mar 2019 15:48:18 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.