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.
38 lines
673 B
38 lines
673 B
6 years ago
|
<?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'),
|
||
|
];
|
||
|
}
|
||
|
}
|