MDL-75430 mod_data: Fix picture size for list view

We were missing the templatename in get_template method of manager.php
This commit is contained in:
raortegar 2022-08-11 18:09:25 +02:00
parent 35b993b694
commit 21a8787e50
2 changed files with 6 additions and 1 deletions

View File

@ -255,6 +255,7 @@ class manager {
if (empty($templatecontent)) {
$templatecontent = data_generate_default_template($instance, $templatename, 0, false, false);
}
$options['templatename'] = $templatename;
// Some templates have extra options.
if ($templatename === 'singletemplate') {
$options['comments'] = true;

View File

@ -47,6 +47,9 @@ class template {
/** @var string the template. */
private $templatecontent;
/** @var string the template name. */
private $templatename;
/** @var moodle_url the base url. */
private $baseurl;
@ -115,6 +118,7 @@ class template {
$this->search = $options['search'] ?? null;
$this->ratings = $options['ratings'] ?? false;
$this->forcecomments = $options['comments'] ?? false;
$this->templatename = $options['templatename'] ?? 'singletemplate';
}
/**
@ -211,7 +215,7 @@ class template {
$pattern = '[[' . $field->field->name . ']]';
$result[$pattern] = highlight(
$this->search,
$field->display_browse_field($entry->id, $this->templatecontent)
$field->display_browse_field($entry->id, $this->templatename)
);
// Field id.
$pattern = '[[' . $field->field->name . '#id]]';