Login   Register  
PHP Classes
elePHPant
Icontem

File: example/com/domain/classes/Person.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Hugo Ferreira da Silva  >  Lumine  >  example/com/domain/classes/Person.php  >  Download  
File: example/com/domain/classes/Person.php
Role: Example script
Content type: text/plain
Description: Entity for "persons" table
Class: Lumine
Object-relational mapping tool
Author: By
Last change:
Date: 2005-10-26 14:00
Size: 258 bytes
 

Contents

Class file image Download
<?php
#### START AUTOCODE

class Person extends LumineBase {
    var 
$__tablename 'persons';
    var 
$__database 'lumine_example';
    var 
$idperson;
    var 
$name;
    var 
$age;
    var 
$eyecolor;
    var 
$cars = array();        // one-to-many
    #### END AUTOCODE
}
?>