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

Source for file Category.php

Documentation is available at Category.php

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

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