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