mirror of
https://codeberg.org/vlw/stadia-avatar.git
synced 2025-09-13 23:23:40 +02:00
Added new extension of DBConnector called StadiaAvatarDB. This class contains all avatar manipulation queries. Fixed get and update. Added Gravatar hash generator.
9 lines
No EOL
121 B
PHP
9 lines
No EOL
121 B
PHP
<?php
|
|
|
|
class Gravatar {
|
|
|
|
public function __construct($email) {
|
|
$this->hash = md5(strtolower(trim($email)));
|
|
}
|
|
|
|
} |