Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.

Differences Between: [Versions 400 and 403]

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: 54 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 {@see 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
{@see 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.

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