MDL-28048 glossary - add multilang support to categories

This commit is contained in:
Eloy Lafuente (stronk7)
2011-07-11 01:03:58 +02:00
parent a938306457
commit d5a8ec5ccd
5 changed files with 32 additions and 6 deletions
+8
View File
@@ -18,6 +18,11 @@ class mod_glossary_entry_form extends moodleform {
$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'));
@@ -30,6 +35,9 @@ class mod_glossary_entry_form extends moodleform {
$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);
+6 -2
View File
@@ -79,6 +79,10 @@ $PAGE->set_title(format_string($glossary->name));
$PAGE->set_heading($course->fullname);
echo $OUTPUT->header();
// Prepare format_string/text options
$fmtoptions = array(
'context' => $context);
if ( $hook >0 ) {
if ( $action == "edit" ) {
@@ -118,7 +122,7 @@ if ( $hook >0 ) {
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 ) {
@@ -215,7 +219,7 @@ if ( $action ) {
<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">
+6 -2
View File
@@ -1645,6 +1645,10 @@ function glossary_print_categories_menu($cm, $glossary, $hook, $category) {
$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>';
@@ -1674,7 +1678,7 @@ function glossary_print_categories_menu($cm, $glossary, $hook, $category) {
$selected = $url;
}
}
$menu[$url] = clean_text($currentcategory->name); //Only clean, not filters
$menu[$url] = format_string($currentcategory->name, true, $fmtoptions);
}
}
if ( !$selected ) {
@@ -1682,7 +1686,7 @@ function glossary_print_categories_menu($cm, $glossary, $hook, $category) {
}
if ( $category ) {
echo format_text($category->name, FORMAT_PLAIN);
echo format_string($category->name, true, $fmtoptions);
} else {
if ( $hook == GLOSSARY_SHOW_NOT_CATEGORISED ) {
+6 -1
View File
@@ -54,6 +54,10 @@ if ( !$entriesbypage = $glossary->entbypage ) {
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);
@@ -178,9 +182,11 @@ if ( $allentries ) {
// 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
@@ -190,7 +196,6 @@ if ( $allentries ) {
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));
+6 -1
View File
@@ -50,6 +50,10 @@ if (!empty($id)) {
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();
@@ -417,9 +421,11 @@ if ($allentries) {
// 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
@@ -433,7 +439,6 @@ if ($allentries) {
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">';