Esempio n. 1
0
 public static function log(Model_List $list, $description)
 {
     $list->touch();
     $t = new Model_Listtransaction();
     $t->list_id = $list->id;
     $t->description = $description;
     $t->save();
 }