skeeks\cms\checks\MysqlTimeCheck::init PHP Method

init() public method

public init ( )
    public function init()
    {
        $this->name = \Yii::t('skeeks/cms', "Time at database and web server");
        $txt = \Yii::t('skeeks/cms', 'Compares the system time database and web server. It may be of unsync when they are installed on different physical machines, but more often as a result of improper installation time zone.');
        $this->description = <<<HTML
<p>
{$txt}
</p>
HTML;
        $this->errorText = \Yii::t('skeeks/cms', "Error");
        $this->successText = \Yii::t('skeeks/cms', "Successfully");
        parent::init();
    }
MysqlTimeCheck