Files
portal-legacy/lib/model/User.php

20 lines
400 B
PHP
Raw Normal View History

2012-11-28 03:55:08 -05:00
<?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();
}
}