1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/models/User.php

87 lines
1.5 KiB
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
<?php
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;
use Zizaco\Confide\ConfideUser;
2013-12-01 21:58:25 +01:00
class User extends ConfideUser implements UserInterface, RemindableInterface, iPerson
{
2013-11-26 13:45:07 +01:00
protected $softDelete = true;
2013-12-03 23:00:01 +01:00
protected $hidden = array('created_at', 'updated_at', 'deleted_at', 'password', 'confirmation_code', 'registered', 'confirmed');
2013-12-01 21:58:25 +01:00
2013-11-26 13:45:07 +01:00
public static $rules = array(
/*
'username' => 'required|email|unique:users',
'email' => 'required|email|unique:users',
'password' => 'required|between:4,20|confirmed',
'password_confirmation' => 'between:4,20',
*/
);
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'users';
public function account()
{
return $this->belongsTo('Account');
}
2013-12-05 16:23:24 +01:00
public function theme()
{
return $this->belongsTo('Theme');
}
2013-12-01 21:58:25 +01:00
public function getPersonType()
{
return PERSON_USER;
}
2013-11-26 13:45:07 +01:00
/**
* Get the unique identifier for the user.
*
* @return mixed
*/
public function getAuthIdentifier()
{
return $this->getKey();
}
/**
* Get the password for the user.
*
* @return string
*/
public function getAuthPassword()
{
return $this->password;
}
/**
* Get the e-mail address where password reminders are sent.
*
* @return string
*/
public function getReminderEmail()
{
return $this->email;
}
2013-11-26 22:45:10 +01:00
public function getFullName()
{
$fullName = $this->first_name . ' ' . $this->last_name;
if ($fullName == ' ')
{
2013-12-01 21:58:25 +01:00
return "Guest";
2013-11-26 22:45:10 +01:00
}
else
{
return $fullName;
}
2013-12-02 20:54:24 +01:00
}
2013-11-26 13:45:07 +01:00
}