You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
673 B
37 lines
673 B
<?php |
|
/** |
|
* Created by Error202 |
|
* Date: 11.09.2018 |
|
*/ |
|
|
|
namespace core\forms; |
|
|
|
use yii\base\Model; |
|
use Yii; |
|
|
|
class FaviconForm extends Model |
|
{ |
|
public $image; |
|
|
|
public function rules() |
|
{ |
|
return [ |
|
['image', 'required'], |
|
[['image'], 'image', 'extensions' => 'png', 'minWidth' => 200, 'minHeight' => 200], |
|
]; |
|
} |
|
|
|
public function attributeLabels() |
|
{ |
|
return [ |
|
'image' => Yii::t('main', 'Image'), |
|
]; |
|
} |
|
|
|
public function attributeHints() |
|
{ |
|
return [ |
|
'image' => Yii::t('main', 'Only png files allowed. Minimum size: 200x200. Form: square'), |
|
]; |
|
} |
|
}
|
|
|