. namespace qbank_bulkmove; use core_question\local\bank\bulk_action_base; use core_question\local\bank\plugin_features_base; /** * Class plugin_feature is the entrypoint for the features. * * @package qbank_bulkmove * @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 plugin_features_base { public function get_bulk_actions(): ?bulk_action_base { return new bulk_move_action(); } }