$definitionoptions = $this->_customdata['definitionoptions'];
$attachmentoptions = $this->_customdata['attachmentoptions'];
+ $context = get_context_instance(CONTEXT_MODULE, $cm->id);
+ // Prepare format_string/text options
+ $fmtoptions = array(
+ 'context' => $context);
+
//-------------------------------------------------------------------------------
$mform->addElement('header', 'general', get_string('general', 'form'));
$mform->addRule('definition_editor', get_string('required'), 'required', null, 'client');
if ($categories = $DB->get_records_menu('glossary_categories', array('glossaryid'=>$glossary->id), 'name ASC', 'id, name')){
+ foreach ($categories as $id => $name) {
+ $categories[$id] = format_string($name, true, $fmtoptions);
+ }
$categories = array(0 => get_string('notcategorised', 'glossary')) + $categories;
$categoriesEl = $mform->addElement('select', 'categories', get_string('categories', 'glossary'), $categories);
$categoriesEl->setMultiple(true);
$PAGE->set_heading($course->fullname);
echo $OUTPUT->header();
+// Prepare format_string/text options
+$fmtoptions = array(
+ 'context' => $context);
+
if ( $hook >0 ) {
if ( $action == "edit" ) {
echo "<p>" . get_string("delete"). " " . get_string("category","glossary"). "</p>";
echo $OUTPUT->box_start('generalbox boxaligncenter errorboxcontent boxwidthnarrow');
- echo "<div class=\"boxaligncenter deletecatconfirm\">".format_text($category->name, FORMAT_PLAIN)."<br/>";
+ echo "<div class=\"boxaligncenter deletecatconfirm\">".format_string($category->name, true, $fmtoptions)."<br/>";
$num_entries = $DB->count_records("glossary_entries_categories", array("categoryid"=>$category->id));
if ( $num_entries ) {
<tr>
<td style="width:80%" align="left">
<?php
- echo "<span class=\"bold\">".format_text($category->name, FORMAT_PLAIN)."</span> <span>($num_entries " . get_string("entries","glossary") . ")</span>";
+ echo "<span class=\"bold\">".format_string($category->name, true, $fmtoptions)."</span> <span>($num_entries " . get_string("entries","glossary") . ")</span>";
?>
</td>
<td style="width:19%" align="center" class="action">
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
+ // Prepare format_string/text options
+ $fmtoptions = array(
+ 'context' => $context);
+
echo '<table border="0" width="100%">';
echo '<tr>';
$selected = $url;
}
}
- $menu[$url] = clean_text($currentcategory->name); //Only clean, not filters
+ $menu[$url] = format_string($currentcategory->name, true, $fmtoptions);
}
}
if ( !$selected ) {
}
if ( $category ) {
- echo format_text($category->name, FORMAT_PLAIN);
+ echo format_string($category->name, true, $fmtoptions);
} else {
if ( $hook == GLOSSARY_SHOW_NOT_CATEGORISED ) {
require_course_login($course, true, $cm);
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
+// Prepare format_string/text options
+$fmtoptions = array(
+ 'context' => $context);
+
$PAGE->set_pagelayout('print');
$PAGE->set_title(get_string("modulenameplural", "glossary"));
$PAGE->set_heading($course->fullname);
// Setting the pivot for the current entry
$pivot = $entry->glossarypivot;
$upperpivot = $textlib->strtoupper($pivot);
+ $pivottoshow = $textlib->strtoupper(format_string($pivot, true, $fmtoptions));
// Reduce pivot to 1cc if necessary
if ( !$fullpivot ) {
$upperpivot = $textlib->substr($upperpivot, 0, 1);
+ $pivottoshow = $textlib->substr($pivottoshow, 0, 1);
}
// If there's group break
if ( $printpivot ) {
$currentpivot = $upperpivot;
- $pivottoshow = $currentpivot;
if ( isset($entry->userispivot) ) {
// printing the user icon if defined (only when browsing authors)
$user = $DB->get_record("user", array("id"=>$entry->userid));
require_course_login($course->id, true, $cm);
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
+// Prepare format_string/text options
+$fmtoptions = array(
+ 'context' => $context);
+
require_once($CFG->dirroot . '/comment/lib.php');
comment::init();
// Setting the pivot for the current entry
$pivot = $entry->glossarypivot;
$upperpivot = $textlib->strtoupper($pivot);
+ $pivottoshow = $textlib->strtoupper(format_string($pivot, true, $fmtoptions));
// Reduce pivot to 1cc if necessary
if ( !$fullpivot ) {
$upperpivot = $textlib->substr($upperpivot, 0, 1);
+ $pivottoshow = $textlib->substr($pivottoshow, 0, 1);
}
// if there's a group break
echo '<table cellspacing="0" class="glossarycategoryheader">';
echo '<tr>';
- $pivottoshow = $currentpivot;
if ( isset($entry->userispivot) ) {
// printing the user icon if defined (only when browsing authors)
echo '<th align="left">';