Changeset 3890 for trunk/tests/models
- Timestamp:
- 02/23/08 22:04:39 (11 months ago)
- Files:
-
- 1 modified
-
trunk/tests/models/forum/ForumUser.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/models/forum/ForumUser.php
r3811 r3890 17 17 $class->mapColumn('dtype', 'string', 50); 18 18 19 // propertymapping19 // column mapping 20 20 $class->mapColumn('id', 'integer', 4, array( 21 21 'primary' => true, … … 24 24 25 25 } 26 /* 27 public function getUsername() 28 { 29 return $this->rawGet('username') . "!"; 30 } 31 */ 26 32 }