Skip to content

Commit

Permalink
Merge branch 'MDL-59611-35' of git://github.com/damyon/moodle into MO…
Browse files Browse the repository at this point in the history
…ODLE_35_STABLE
  • Loading branch information
David Monllao committed Jul 31, 2018
2 parents 671ad6b + e8d8bcc commit 98fe6ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mod/assign/locallib.php
Expand Up @@ -1504,8 +1504,9 @@ protected function add_plugin_settings(assign_plugin $plugin, MoodleQuickForm $m
} else if ($plugin->is_visible() && $plugin->is_configurable()) {
$name = $plugin->get_subtype() . '_' . $plugin->get_type() . '_enabled';
$label = $plugin->get_name();
$label .= ' ' . $this->get_renderer()->help_icon('enabled', $plugin->get_subtype() . '_' . $plugin->get_type());
$pluginsenabled[] = $mform->createElement('checkbox', $name, '', $label);
$helpicon = $this->get_renderer()->help_icon('enabled', $plugin->get_subtype() . '_' . $plugin->get_type());
$pluginsenabled[] = $mform->createElement('static', '', '', $helpicon);

$default = get_config($plugin->get_subtype() . '_' . $plugin->get_type(), 'default');
if ($plugin->get_config('enabled') !== false) {
Expand Down

0 comments on commit 98fe6ee

Please sign in to comment.