This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Entities/User.php
T
Yuri Kuznetsov cca8be7e15 dev
2013-12-20 13:29:47 +02:00

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');
}
}