mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 16:32:43 +02:00
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:
parent
35b993b694
commit
21a8787e50
@ -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;
|
||||
|
@ -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]]';
|
||||
|
Loading…
x
Reference in New Issue
Block a user