2018-10-22 14:04:37 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2018-10-22 14:04:37 +02:00
|
|
|
|
2018-11-02 11:54:46 +01:00
|
|
|
namespace App\Models\Presenters;
|
2018-10-22 14:04:37 +02:00
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class UserPresenter.
|
2019-01-27 00:22:57 +01:00
|
|
|
*/
|
2018-10-22 14:04:37 +02:00
|
|
|
class UserPresenter extends EntityPresenter
|
|
|
|
{
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-10-22 14:04:37 +02:00
|
|
|
public function name()
|
|
|
|
{
|
2021-07-11 06:54:57 +02:00
|
|
|
|
|
|
|
if(!$this->entity)
|
|
|
|
return "No User Object Available";
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$first_name = isset($this->entity->first_name) ? $this->entity->first_name : '';
|
|
|
|
$last_name = isset($this->entity->last_name) ? $this->entity->last_name : '';
|
2020-09-06 11:38:10 +02:00
|
|
|
|
|
|
|
return $first_name.' '.$last_name;
|
2018-10-22 14:04:37 +02:00
|
|
|
}
|
2021-05-06 06:39:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
public function getDisplayName()
|
|
|
|
{
|
|
|
|
if ($this->getFullName()) {
|
|
|
|
return $this->getFullName();
|
|
|
|
} elseif ($this->entity->email) {
|
|
|
|
return $this->entity->email;
|
|
|
|
} else {
|
|
|
|
return ctrans('texts.guest');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getFullName()
|
|
|
|
{
|
|
|
|
if ($this->entity->first_name || $this->entity->last_name) {
|
|
|
|
return $this->entity->first_name.' '.$this->entity->last_name;
|
|
|
|
} else {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
2018-10-22 14:04:37 +02:00
|
|
|
}
|