While Quiz And Survey Master is feature-rich, there are many times that you will want to extend the plugin even further. All of the API for Quiz and Survey Master is built into a wrapper class called Plugin Helper.
This class is stored in the main plugin class. To access the plugin helper class, you can use the class like this:
global $mlwQuizMasterNext; $mlwQuizMasterNext->pluginHelper->register_question_type();
You can use the API to do a variety of things such as:
- Creating new tabs in the Edit Quiz/Survey page
- Registering new CSS templates
- Registering new question types
- Registering new settings
- and much more…