wengerk/certificationy-drupal-pack

A series of questions to prepare for the Drupal 8 certification

dev-master 2019-03-26 17:22 UTC

This package is auto-updated.

Last update: 2024-04-11 22:40:02 UTC


README

8029934?v=3&s=200

Certificationy - Drupal Pack

This is the Drupal Pack for Certificationy.

This is provides a complete system to build multiple choice question system. This is useful for any company that need to test an applicant, or to make a certification website/training tool.

How it looks?

Certificationy application

How to use it?

As usual, use composer to install the library:

composer create-project certificationy/certificationy-cli
cd certificationy-cli
composer require "wengerk/certificationy-drupal-pack"

Then, you need to load packs using the config.yml file.

For instance, let's say you need the drupal-pack:

# config.yaml
paths: ["vendor/wengerk/certificationy-drupal-pack/data"]

Then you can do:

php certificationy.php start

More run options

Select the number of questions

php certificationy.php start --number=10

The default value is 20.

List categories

php certificationy.php start --list [-l]

Will list all the categories available

Only questions from certain categories

php certificationy.php start "Automated tests" "Bundles"

Will only get the questions from the categories "Automated tests" and "Bundles"

Use the category list from List categories

Hide the information that questions are/aren't multiple choice

php certificationy.php start --hide-multiple-choice

As default, the information will be displayed

Multiple choice

Set custom configuration file

bin/certificationy start --config=../config.yml

Will set custom config file

And all combined

php certificationy.php start --number=5 --hide-multiple-choice "Automated tests" "Bundles"
  • 5 questions
  • We will hide the information that questions are/aren't multiple choice
  • Only get questions from category "Automated tests" and "Bundles"

Note: if you pass --list [-l] then you will ONLY get the category list, regarding your other settings

Please, help us complete our official packs of questions!

You can submit PR with your own questions into the packs located under the Certificationy Drupal Repository.

Certificationy provides packs for both PHP5 and Symfony certifications.

More we will have questions, the more powerful will be this tool!