17 lines
244 B
PHP
17 lines
244 B
PHP
<?php
|
|
|
|
namespace Espo\Entities;
|
|
|
|
class User extends \Espo\Core\ORM\Entity
|
|
{
|
|
public function isAdmin()
|
|
{
|
|
return $this->get('isAdmin');
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return $this->get('firstName') . ' ' . $this->get('lastName');
|
|
}
|
|
}
|