mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Fix avatar erros
This commit is contained in:
parent
19000c2f03
commit
574f4918e5
3 changed files with 11 additions and 15 deletions
|
@ -40,10 +40,8 @@ class Club extends RowModel
|
||||||
|
|
||||||
function getAvatarUrl(): string
|
function getAvatarUrl(): string
|
||||||
{
|
{
|
||||||
$url = ((!empty($_SERVER['HTTPS'])) ? 'https' : 'http') . '://' . $_SERVER['SERVER_NAME'] . '/';
|
$serverUrl = ovk_scheme(true) . $_SERVER["SERVER_NAME"];
|
||||||
$url = explode('?', $url);
|
$avPhoto = $this->getAvatarPhoto();
|
||||||
$serverUrl = $url[0];
|
|
||||||
$avPhoto = $this->getAvatarPhoto();
|
|
||||||
|
|
||||||
return is_null($avPhoto) ? "$serverUrl/assets/packages/static/openvk/img/camera_200.png" : $avPhoto->getURL();
|
return is_null($avPhoto) ? "$serverUrl/assets/packages/static/openvk/img/camera_200.png" : $avPhoto->getURL();
|
||||||
}
|
}
|
||||||
|
|
|
@ -103,9 +103,7 @@ class User extends RowModel
|
||||||
|
|
||||||
function getAvatarUrl(): string
|
function getAvatarUrl(): string
|
||||||
{
|
{
|
||||||
$url = ((!empty($_SERVER['HTTPS'])) ? 'https' : 'http') . '://' . $_SERVER['SERVER_NAME'];
|
$serverUrl = ovk_scheme(true) . $_SERVER["SERVER_NAME"];
|
||||||
$url = explode('?', $url);
|
|
||||||
$serverUrl = $url[0];
|
|
||||||
|
|
||||||
if($this->getRecord()->deleted)
|
if($this->getRecord()->deleted)
|
||||||
return "$serverUrl/assets/packages/static/openvk/img/camera_200.png";
|
return "$serverUrl/assets/packages/static/openvk/img/camera_200.png";
|
||||||
|
@ -370,20 +368,16 @@ class User extends RowModel
|
||||||
|
|
||||||
if(!$this->getRecord()->status) {
|
if(!$this->getRecord()->status) {
|
||||||
$unfilled[] = "status";
|
$unfilled[] = "status";
|
||||||
$incompleteness += 10;
|
$incompleteness += 15;
|
||||||
}
|
}
|
||||||
if(!$this->getRecord()->telegram) {
|
if(!$this->getRecord()->telegram) {
|
||||||
$unfilled[] = "telegram";
|
$unfilled[] = "telegram";
|
||||||
$incompleteness += 10;
|
$incompleteness += 15;
|
||||||
}
|
}
|
||||||
if(!$this->getRecord()->email) {
|
if(!$this->getRecord()->email) {
|
||||||
$unfilled[] = "email";
|
$unfilled[] = "email";
|
||||||
$incompleteness += 20;
|
$incompleteness += 20;
|
||||||
}
|
}
|
||||||
if(!$this->getRecord()->phone) {
|
|
||||||
$unfilled[] = "phone";
|
|
||||||
$incompleteness += 20;
|
|
||||||
}
|
|
||||||
if(!$this->getRecord()->city) {
|
if(!$this->getRecord()->city) {
|
||||||
$unfilled[] = "city";
|
$unfilled[] = "city";
|
||||||
$incompleteness += 20;
|
$incompleteness += 20;
|
||||||
|
|
|
@ -156,9 +156,13 @@ function ovk_is_ssl(): bool
|
||||||
return $GLOBALS["requestIsSSL"];
|
return $GLOBALS["requestIsSSL"];
|
||||||
}
|
}
|
||||||
|
|
||||||
function ovk_scheme(): string
|
function ovk_scheme(bool $with_slashes = false): string
|
||||||
{
|
{
|
||||||
return ovk_is_ssl() ? "https" : "http";
|
$scheme = ovk_is_ssl() ? "https" : "http";
|
||||||
|
if($with_slashes)
|
||||||
|
$scheme .= "://";
|
||||||
|
|
||||||
|
return $scheme;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (function() {
|
return (function() {
|
||||||
|
|
Loading…
Reference in a new issue