Загрузка данных


<?php

namespace Custom\NoEmail\Entity;

class User extends XFCP_User
{
    protected function _preSave()
    {
        if (!$this->email)
        {
            $this->email = $this->username . '@local.invalid';
        }

        parent::_preSave();
    }
}