kllakk/yii2-quizzes Quizzes module for the Yii2 framework

Yii2 Quizzes ¶

  1. Installation
  2. Usage

Quizzes module for the Yii2 framework

Installation ¶

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist kllakk/yii2-quizzes "*"

or add

"kllakk/yii2-quizzes": "*"

to the require section of your composer.json file.

Usage ¶

Once the extension is installed, simply modify your application configuration as follows:

return [
    'modules' => [
        'quizzes' => [
            'class' => 'kllakk\quizzes\Module',
        ],
    ],
];

After you downloaded and configured Yii2-quizzess, the last thing you need to do is updating your database schema by applying the migration:

$ php yii migrate/up --migrationPath=@kllakk/quizzes/migrations

You can then access Quizzes editor through the following URL:

http://localhost/path/to/index.php?r=quizzes/

Also, you need to inject quizzes templates into the main layout on your site

<?= \kllakk\quizzes\widgets\QuizzesInject::widget(); ?>
0 0
1 follower
237 downloads
Yii Version: 2.0
License: MIT
Category: User Interface
Developed by: kllakk kllakk
Created on: Jan 22, 2021
Last updated: (not set)
Packagist Profile
Code Repository

Related Extensions