mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 06:37:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			337 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			337 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Ninja\Presenters;
 | |
| 
 | |
| class UserPresenter extends EntityPresenter
 | |
| {
 | |
|     public function email()
 | |
|     {
 | |
|         return htmlentities(sprintf('%s <%s>', $this->fullName(), $this->entity->email));
 | |
|     }
 | |
| 
 | |
|     public function fullName()
 | |
|     {
 | |
|         return $this->entity->first_name . ' ' . $this->entity->last_name;
 | |
|     }
 | |
| }
 |