public $accessPermissionName = 'access::emailsValidator';
12
13
public $controllerNamespace = 'andmemasin\emailsvalidator\controllers';
14
15
public $defaultRoute = 'site/index';
16
17
/** @var int $maxInputKB Limit the input string to KB (default = 128) */
18
public $maxInputKB = 128;
19
20
/** @var boolean $displayFlashMessages whether the flash messages will be rendered ny the module. You can disable this if your app has a separate flash displaying system. */
21
public $displayFlashMessages = true;
22
23
/**
24
* {@inheritdoc}
25
*/
26
public function init()
27
{
28
parent::init();
29
30
if (Yii::$app instanceof \yii\console\Application) {