Réplication sur Wamp Server 3.1.3 x64

Re: Réplication sur Wamp Server 3.1.3 x64

par Christian Bocquet,
Nombre de réponses : 0
Avatar Moodleurs particulièrement utiles

Bonjour,

Sur le forum en anglais on trouve des messages ici.

Vous devriez trouver la définition de la fonction tool_dataprivacy_standard_footer_html() dans le fichier moodle30/admin/tool/dataprivacy/lib.php

Avec la version 3.5.6, on y trouve:

/**
* Callback to add footer elements.
*
* @return string HTML footer content
*/
function tool_dataprivacy_standard_footer_html() {
$output = '';

// A returned 0 means that the setting was set and disabled, false means that there is no value for the provided setting.
$showsummary = get_config('tool_dataprivacy', 'showdataretentionsummary');
if ($showsummary === false) {
// This means that no value is stored in db. We use the default value in this case.
$showsummary = true;
}

if ($showsummary) {
$url = new moodle_url('/admin/tool/dataprivacy/summary.php');
$output = html_writer::link($url, get_string('dataretentionsummary', 'tool_dataprivacy'));
$output = html_writer::div($output, 'tool_dataprivacy');
}
return $output;
}


Christian

Moyenne des évaluations Utile (1)