mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 08:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			455 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			455 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Extensions\Avatar\Schemas;
 | |
| 
 | |
| use App\Extensions\Avatar\AvatarSchemaInterface;
 | |
| use App\Models\User;
 | |
| 
 | |
| class GravatarSchema implements AvatarSchemaInterface
 | |
| {
 | |
|     public function getId(): string
 | |
|     {
 | |
|         return 'gravatar';
 | |
|     }
 | |
| 
 | |
|     public function getName(): string
 | |
|     {
 | |
|         return 'Gravatar';
 | |
|     }
 | |
| 
 | |
|     public function get(User $user): string
 | |
|     {
 | |
|         return 'https://gravatar.com/avatar/' . md5($user->email);
 | |
|     }
 | |
| }
 | 
