mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
20 lines
400 B
PHP
Executable File
20 lines
400 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Subclass for representing a row from the 'user' table.
|
|
*
|
|
*
|
|
*
|
|
* @package lib.model
|
|
*/
|
|
class User extends BaseUser
|
|
{
|
|
public function getDisplayName()
|
|
{
|
|
return $this->getLastName() . ', ' . $this->getFirstName();
|
|
}
|
|
public function getFullAddress(){
|
|
return $this->getAddress().' '.$this->getCity().' '.$this->getState().' '.$this->getZip();
|
|
}
|
|
}
|