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

Source for file Manufacturer.php

Documentation is available at Manufacturer.php

  1. <?php
  2. /**
  3.  * Table Definition for manufacturer
  4.  */
  5. require_once 'DB/DataObject.php';
  6.  
  7. class Manufacturer extends DB_DataObject
  8. {
  9.      var $fb_linkDisplayFields = array('name');
  10.  
  11.     ###START_AUTOCODE
  12.     /* the code below is auto generated do not remove the above tag */
  13.  
  14.     var $__table 'manufacturer';                    // table name
  15.     var $manufacturer_id;                 // int(10)  not_null primary_key unique_key unsigned auto_increment
  16.     var $name;                            // string(80)  not_null
  17.  
  18.     /* ZE2 compatibility trick*/
  19.     function __clone(return $this;}
  20.  
  21.     /* Static get */
  22.     function staticGet($k,$v=NULLreturn DB_DataObject::staticGet('Manufacturer',$k,$v)}
  23.  
  24.     /* the code above is auto generated do not remove the tag below */
  25.     ###END_AUTOCODE
  26.  
  27.     // This class does not have the usual 'title' field as globally defined in the
  28.     // dataObject.ini file, thus it needs an overriding property so that selectboxes
  29.     // can be built correctly from this class.
  30.     var $fb_linkDisplayFields = array('name');
  31.  
  32. }
  33. ?>

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