. /** * Entry point for plugin. * * Every qbank plugin must extent this class. * * @package qbank_exportquestions * @copyright 2021 Catalyst IT Australia Pty Ltd * @author Safat Shahin * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace qbank_exportquestions; use core_question\local\bank\navigation_node_base; /** * Class plugin_feature. * * @package qbank_exportquestions * @copyright 2021 Catalyst IT Australia Pty Ltd * @author Safat Shahin * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class plugin_feature extends \core_question\local\bank\plugin_features_base { public function get_navigation_node(): ?navigation_node_base { return new navigation(); } }