Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Interface to indicate that a question bank column can go in the action menu.

Copyright: 2019 Tim Hunt
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 56 lines (2 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

menuable_action:: (1 method):
  get_action_menu_link()


Interface: menuable_action  - X-Ref

Interface to indicate that a question bank column can go in the action menu.

If a question bank column implements this interface, and if the {@link edit_menu_column}
is present in the question bank view, then the 'column' will be shown as an entry in the
edit menu instead of as a separate column.

Probably most columns that want to implement this will be subclasses of
{@link action_column_base}, and most such columns should probably implement
this interface.

If your column is a simple action, you can probably save duplicated code by
using the base class action_column_menuable as an easy way to implement both
action_column_base and this interface.

get_action_menu_link(\stdClass $question)   X-Ref
Return the appropriate action menu link, or null if it does not apply to this question.

param: \stdClass $question data about the question being displayed in this row.
return: \action_menu_link|null the action, if applicable to this question.