Skip to content
Snippets Groups Projects
Select Git revision
  • 6de18107abc60d7fc415fc38d176de2caed06407
  • master default
2 results

Prototype_sent.php

Blame
  • user avatar
    Brett Bieber authored
    Import of old design survey. Cannot advance past step 1 because images appear to not be pre-loading. Still some work to be done.
    6de18107
    History
    Prototype_sent.php 836 B
    <?php
    /**
     * Table Definition for prototype_sent
     */
    require_once 'DB/DataObject.php';
    
    class DesignSurvey_Prototype_sent extends DB_DataObject 
    {
        ###START_AUTOCODE
        /* the code below is auto generated do not remove the above tag */
    
        var $__table = 'prototype_sent';                  // table name
        var $id;                              // int(11)  not_null primary_key auto_increment
        var $voter_id;                        // int(11)  not_null multiple_key
        var $prototype_id;                    // int(11)  not_null
    
        /* ZE2 compatibility trick*/
        function __clone() { return $this;}
    
        /* Static get */
        function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('DataObjects_Prototype_sent',$k,$v); }
    
        /* the code above is auto generated do not remove the tag below */
        ###END_AUTOCODE
    }