skeeks\cms\models\CmsSite::createTreeAfterInsert PHP Method

createTreeAfterInsert() public method

public createTreeAfterInsert ( Event $e )
$e yii\base\Event
    public function createTreeAfterInsert(Event $e)
    {
        $tree = new Tree(['name' => 'Главная страница', 'site_code' => $this->code]);
        if (!$tree->save(false)) {
            throw new Exception('Failed to create a section of the tree');
        }
    }