cleanup
This commit is contained in:
parent
f9938ea6fd
commit
07a166201d
1 changed files with 1 additions and 13 deletions
|
@ -20,20 +20,8 @@ class ForumUser extends Doctrine_Entity
|
||||||
$class->mapColumn('id', 'integer', 4, array(
|
$class->mapColumn('id', 'integer', 4, array(
|
||||||
'primary' => true,
|
'primary' => true,
|
||||||
'autoincrement' => true));
|
'autoincrement' => true));
|
||||||
$class->mapColumn('username', 'string', 50, array(
|
$class->mapColumn('username', 'string', 50, array());
|
||||||
'accessor' => 'getUsernameCustom',
|
|
||||||
'mutator' => 'setUsernameCustom'));
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getUsernameCustom()
|
|
||||||
{
|
|
||||||
return $this->rawGetField('username') . "!";
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setUsernameCustom($username)
|
|
||||||
{
|
|
||||||
$this->rawSetField('username', $username . "?");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue