Файловый менеджер - Редактировать - /var/www/axolotl/data/www/axolotls.ru/www/bitrix/modules/disk/lib/proxytype/user.php
Назад
<?php namespace Bitrix\Disk\ProxyType; use Bitrix\Disk\SystemUser; use Bitrix\Disk\User as UserModel; use Bitrix\Main\Localization\Loc; Loc::loadMessages(__FILE__); class User extends Disk { /** @var \Bitrix\Disk\User */ private $user; /** * Potential opportunity to attach object to external entity * @return bool */ public function canAttachToExternalEntity() { return true; } /** * Get url to view entity of storage (ex. user profile, group profile, etc) * By default: folder list * @return string */ public function getEntityUrl() { return $this->getUser()->getDetailUrl(); } /** * Get name of entity (ex. user last name + first name, group name, etc) * By default: get title * @return string */ public function getEntityTitle() { $user = $this->getUser(); return isset($user)? $user->getFormattedName() : parent::getEntityTitle(); } /** * Get image (avatar) of entity. * Can be shown with entityTitle in different lists. * @param int $width Image width. * @param int $height Image height. * @return string */ public function getEntityImageSrc($width, $height) { return $this->getUser()->getAvatarSrc($width, $height); } /** * Return name of storage. * @return string */ public function getTitle() { return Loc::getMessage('DISK_PROXY_TYPE_USER_TITLE'); } /** * Return name of storage. * May be concrete by current user context. * Should not use in notification, email to another person. * @return string */ public function getTitleForCurrentUser() { global $USER; if($USER instanceof \CUser && $USER->getId() == $this->entityId) { return Loc::getMessage('DISK_PROXY_TYPE_USER_TITLE_CURRENT_USER'); } return parent::getTitle(); } /** * Returns user model for the proxy type. * @return \Bitrix\Disk\User|null */ public function getUser() { if($this->user !== null) { return $this->user; } $this->user = UserModel::loadById($this->entityId); if(!$this->user) { $this->user = SystemUser::create(); } return $this->user; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.8 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка