Merge branch 'MDL-83013-main' of https://github.com/lucaboesch/moodle

This commit is contained in:
Huong Nguyen 2024-12-10 09:29:08 +07:00
commit 448d08d48e
No known key found for this signature in database
GPG Key ID: 40D88AB693A3E72A
2 changed files with 16 additions and 2 deletions

View File

@ -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;
}
}

View File

@ -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