| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-backend/Classes/Backend/Avatar/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-backend/Classes/Backend/Avatar/Image.php |
<?php
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Backend\Backend\Avatar;
/**
* Acts as a pseudo model for holding all information of an avatar image
* Holds url + dimensions of avatar image
*/
class Image
{
/**
* Url of avatar image. Needs to be relative to the website root or an absolute URL.
*
* @var string
*/
protected $url;
/**
* @var int
*/
protected $width;
/**
* @var int
*/
protected $height;
/**
* @param string $url url of image. Needs to be relative to the website root or an absolute URL.
* @param int $width width of image
* @param int $height height of image
*/
public function __construct($url, $width, $height)
{
$this->url = $url;
$this->width = (int)$width;
$this->height = (int)$height;
}
/**
* Fetches the URL to the the avatar image
*
* @return string
*/
public function getUrl()
{
return $this->url;
}
/**
* @return int
*/
public function getWidth()
{
return $this->width;
}
/**
* @return int
*/
public function getHeight()
{
return $this->height;
}
}