Phosphorum\Models\Users::beforeCreate PHP Method

beforeCreate() public method

public beforeCreate ( )
    public function beforeCreate()
    {
        $this->notifications = 'P';
        $this->digest = 'Y';
        $this->moderator = 'N';
        $this->karma += Karma::INITIAL_KARMA;
        $this->votes_points += Karma::INITIAL_KARMA;
        $this->votes = 0;
        $this->timezone = 'Europe/London';
        $this->theme = 'D';
        $this->banned = 'N';
    }