mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
Merge branch 'MDL-83013-main' of https://github.com/lucaboesch/moodle
This commit is contained in:
commit
448d08d48e
@ -72,7 +72,7 @@ class delete_action extends question_action_base {
|
||||
}
|
||||
|
||||
public function get_menu_position(): int {
|
||||
return 400;
|
||||
return 2000;
|
||||
}
|
||||
|
||||
protected function get_url_icon_and_label(\stdClass $question): array {
|
||||
@ -99,4 +99,18 @@ class delete_action extends question_action_base {
|
||||
return [$url, 't/delete', $this->strdelete];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Override method to get url and label for delete action to add the text-danger class.
|
||||
*
|
||||
* @param \stdClass $question
|
||||
* @return \action_menu_link|null
|
||||
*/
|
||||
public function get_action_menu_link(\stdClass $question): ?\action_menu_link {
|
||||
$deletelink = parent::get_action_menu_link($question);
|
||||
if ($deletelink !== null) {
|
||||
$deletelink->add_class('text-danger');
|
||||
}
|
||||
return $deletelink;
|
||||
}
|
||||
}
|
||||
|
@ -55,9 +55,9 @@ abstract class view_component {
|
||||
* 200 edit_action
|
||||
* 250 copy_action
|
||||
* 300 tags_action
|
||||
* 400 delete_action
|
||||
* 500 history_action
|
||||
* 600 export_xml_action
|
||||
* 2000 delete_action
|
||||
* (So, if you want your action at a particular place in the order, there should be space.)
|
||||
*
|
||||
* If two actions get the same order number, then the tie-break on the sort
|
||||
|
Loading…
x
Reference in New Issue
Block a user