. namespace qbank_comment; /** * Class plugin_features is the entrypoint for the columns. * * @package qbank_comment * @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 { /** * Get the columns provided by this plugin. * * @param \core_question\local\bank\view $qbank * @return comment_count_column[] */ public function get_question_columns(\core_question\local\bank\view $qbank): array { return [ new comment_count_column($qbank) ]; } }