. /** * Plugin entrypoint for columns. * * @package qbank_editquestion * @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_editquestion; /** * Class columns is the entrypoint for the columns. * * @package qbank_editquestion * @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_question_columns($qbank): array { return [ new edit_action_column($qbank), new copy_action_column($qbank), new question_status_column($qbank) ]; } }