From 3bdd840e6364d91ed358b6b9ae3e35ed5aa244e9 Mon Sep 17 00:00:00 2001 From: Jun Pataleta Date: Fri, 22 Oct 2021 20:45:38 +0800 Subject: [PATCH] MDL-72885 output: Allow additional attributes for custom menu items * Plus don't render the link title if it's the same as the link text. --- lib/outputcomponents.php | 22 ++++++++++++++++++---- lib/templates/custom_menu_item.mustache | 2 +- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/lib/outputcomponents.php b/lib/outputcomponents.php index 613ef61dbab..c1b22e185f4 100644 --- a/lib/outputcomponents.php +++ b/lib/outputcomponents.php @@ -3487,6 +3487,9 @@ class custom_menu_item implements renderable, templatable { */ protected $lastsort = 0; + /** @var array Array of other HTML attributes for the custom menu item. */ + protected $attributes = []; + /** * Constructs the new custom menu item * @@ -3496,13 +3499,16 @@ class custom_menu_item implements renderable, templatable { * @param int $sort A sort or to use if we need to sort differently [Optional] * @param custom_menu_item $parent A reference to the parent custom_menu_item this child * belongs to, only if the child has a parent. [Optional] + * @param array $attributes Array of other HTML attributes for the custom menu item. */ - public function __construct($text, moodle_url $url=null, $title=null, $sort = null, custom_menu_item $parent = null) { + public function __construct($text, moodle_url $url = null, $title = null, $sort = null, custom_menu_item $parent = null, + array $attributes = []) { $this->text = $text; $this->url = $url; $this->title = $title; $this->sort = (int)$sort; $this->parent = $parent; + $this->attributes = $attributes; } /** @@ -3512,14 +3518,15 @@ class custom_menu_item implements renderable, templatable { * @param moodle_url $url * @param string $title * @param int $sort + * @param array $attributes Array of other HTML attributes for the custom menu item. * @return custom_menu_item */ - public function add($text, moodle_url $url = null, $title = null, $sort = null) { + public function add($text, moodle_url $url = null, $title = null, $sort = null, $attributes = []) { $key = count($this->children); if (empty($sort)) { $sort = $this->lastsort + 1; } - $this->children[$key] = new custom_menu_item($text, $url, $title, $sort, $this); + $this->children[$key] = new custom_menu_item($text, $url, $title, $sort, $this, $attributes); $this->lastsort = (int)$sort; return $this->children[$key]; } @@ -3652,8 +3659,15 @@ class custom_menu_item implements renderable, templatable { $context = new stdClass(); $context->text = external_format_string($this->text, $syscontext->id); $context->url = $this->url ? $this->url->out() : null; - $context->title = external_format_string($this->title, $syscontext->id); + // No need for the title if it's the same with text. + if ($this->text !== $this->title) { + // Show the title attribute only if it's different from the text. + $context->title = external_format_string($this->title, $syscontext->id); + } $context->sort = $this->sort; + if (!empty($this->attributes)) { + $context->attributes = $this->attributes; + } $context->children = array(); if (preg_match("/^#+$/", $this->text)) { $context->divider = true; diff --git a/lib/templates/custom_menu_item.mustache b/lib/templates/custom_menu_item.mustache index 5bff2f9757d..006da02e015 100644 --- a/lib/templates/custom_menu_item.mustache +++ b/lib/templates/custom_menu_item.mustache @@ -39,7 +39,7 @@