MDL-56297 theme_boost: Obey usefilepicker option

URL form fields support 'usefilepicker' option to show/hide the file picker in some forms.
This commit is contained in:
Damyon Wiese
2016-10-28 12:57:08 +08:00
parent 577bd70d38
commit 0f13ffbc63
+1 -1
View File
@@ -185,7 +185,7 @@ EOD;
public function export_for_template(renderer_base $output) {
$context = $this->export_for_template_base($output);
$context['filepickerhtml'] = $this->getFilePickerHTML();
$context['filepickerhtml'] = !empty($this->_options['usefilepicker']) ? $this->getFilePickerHTML() : '';
return $context;
}