Welcome Guest, Not a member yet? Register   Sign In
Auto_Model PHP5
#6

[eluser]Sam Dark[/eluser]
Sample model:
Code:
<?php
class User extends AutoModel {
  function __construct(){
    parent::__construct();
    
    $this->table = 'users';
    $this->fields = array(
      'login',
      'password',
      'email',
      'created_on',
      'updated_on'
    );
    
    $this->addBehavior(new TimestampableBehavior());    
  }
}

I think we need to combine our approaches to get maximum out of this.


Messages In This Thread
Auto_Model PHP5 - by El Forum - 08-22-2008, 11:11 PM
Auto_Model PHP5 - by El Forum - 08-22-2008, 11:12 PM
Auto_Model PHP5 - by El Forum - 08-22-2008, 11:59 PM
Auto_Model PHP5 - by El Forum - 08-25-2008, 03:05 AM
Auto_Model PHP5 - by El Forum - 08-25-2008, 03:05 AM
Auto_Model PHP5 - by El Forum - 08-25-2008, 03:06 AM
Auto_Model PHP5 - by El Forum - 08-25-2008, 03:24 AM
Auto_Model PHP5 - by El Forum - 08-25-2008, 03:38 AM
Auto_Model PHP5 - by El Forum - 08-25-2008, 11:06 AM
Auto_Model PHP5 - by El Forum - 03-30-2009, 12:01 AM



Theme © iAndrew 2016 - Forum software by © MyBB