mirror of
https://github.com/elyby/accounts.git
synced 2024-11-09 23:12:20 +05:30
24 lines
566 B
PHP
24 lines
566 B
PHP
|
<?php
|
||
|
namespace common\models\confirmations;
|
||
|
|
||
|
use common\models\EmailActivation;
|
||
|
use yii\helpers\ArrayHelper;
|
||
|
|
||
|
class CurrentEmailConfirmation extends EmailActivation {
|
||
|
|
||
|
public function behaviors() {
|
||
|
return ArrayHelper::merge(parent::behaviors(), [
|
||
|
'expirationBehavior' => [
|
||
|
'repeatTimeout' => 6 * 60 * 60,
|
||
|
'expirationTimeout' => 1 * 60 * 60,
|
||
|
],
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
public function init() {
|
||
|
parent::init();
|
||
|
$this->type = EmailActivation::TYPE_CURRENT_EMAIL_CONFIRMATION;
|
||
|
}
|
||
|
|
||
|
}
|