Рефакторинг. Добавлении поддержки параметров, задающих максимально допустимые размеры изображения. Изменены параметры для ресайзинга изображений (на этот счет добавлено ТОДО).

This commit is contained in:
Alexander Demidov
2013-08-19 12:11:40 +04:00
parent e97f584ebc
commit 7ff2859390
3 changed files with 59 additions and 16 deletions

View File

@ -6,4 +6,17 @@ class ImageVariant extends File
public $height;
public $type;
public $size;
/**
* @param $class string|StdClass
* @return mixed
*/
public static function getIsClass($class)
{
if (is_object($class)) {
return (get_class($class) == __CLASS__);
} else {
return ($class == __CLASS__);
}
}
}