Tenes que crear el behavior:
Código PHP:
Ver originalclass EncryptTemplate extends Doctrine_Template
{
public function setUp()
{
$this->hasMutator('password', '_encrypt_password');
}
public function _encrypt_password
....
}
y luego agregarlo al yml:
Código YML:
Ver originalusuario:
actAs:
[Timestampable, EncryptTemplate]
columns:
id:
type: integer(10)
primary: true
autoincrement: true
username:
type: string(255)
unique: true
password:
type: string(255)
email:
type: varchar(255)
unique: true
Saludos.