Merge branch 'wip-MDL-51802-master4' of https://github.com/marinaglancy/moodle

This commit is contained in:
Eloy Lafuente (stronk7)
2016-02-16 23:22:35 +01:00
39 changed files with 1078 additions and 225 deletions
+10
View File
@@ -4127,6 +4127,16 @@ EOD;
$list = new \core_tag\output\taglist($tags, $label, $classes, $limit, $pagecontext);
return $this->render_from_template('core_tag/taglist', $list->export_for_template($this));
}
/**
* Renders element for inline editing of any value
*
* @param \core\output\inplace_editable $element
* @return string
*/
public function render_inplace_editable(\core\output\inplace_editable $element) {
return $this->render_from_template('core/inplace_editable', $element->export_for_template($this));
}
}
/**