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

init() public method

public init ( )
    public function init()
    {
        $this->name = \Yii::t('skeeks/cms', "Saved sessions");
        $txt1 = \Yii::t('skeeks/cms', 'Checking the ability to store data on the server using the session mechanism. This basic ability necessary to preserve authorization between hits.');
        $txt2 = \Yii::t('skeeks/cms', 'Sessions may not work if their support is not installed, in php.ini contains the incorrect folder to store the sessions or it is not available on the record.');
        $this->description = <<<HTML
<p>
{$txt1}
</p>
<p>
{$txt2}
</p>
HTML;
        $this->errorText = \Yii::t('skeeks/cms', "Error");
        $this->successText = \Yii::t('skeeks/cms', "Successfully");
        parent::init();
    }
SessionCheck