Advertisement
Guest User

Active Record User Model

a guest
Jun 22nd, 2012
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. class User extends ActiveRecord\Model
  2. {
  3.     public static $table_name = 'user';
  4.     public static $primary_key = 'user_id';
  5.    
  6.     public function before_create()
  7.     {
  8.         $this->user_created = date('Y-m-d', strtotime('now'));
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement