moodle/mod/glossary
Eloy Lafuente (stronk7) bd5fdcfccd MDL-63422 general: review core loop / switch / case / continue
This commit reviews all continue uses in core happening within a
loop / switch / case hierarchy. This does not cover:

- Changes to libraries. Will be handled in another issue / commit.
- Uses out from loops, will be reviewed by other commit.

The policy followed has been:
- When possible, take rid of the continue.
- When clearly the intention was to jump to next element in loop
  change to continue 2
- When it was not clear, keep old behavior switching to break, no
  matter how weird the behavior may be.
2018-10-31 00:17:59 +01:00
..
backup MDL-9367 restore: Roll only configuration dates 2017-08-01 10:46:37 +05:30
classes MDL-63531 privacy: Update to comments provider to simplfy sql. 2018-10-30 09:47:14 +08:00
db MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:15:48 +02:00
formats MDL-60181 glossary: Glossary rating is displayed wrongly 2018-01-22 13:51:58 +08:00
lang/en MDL-62763 lang: Merge English strings from the en_fix language pack 2018-07-02 11:15:26 +02:00
pix
tests MDL-63497 mod_glossary: Add support for removal of context users 2018-10-22 12:48:33 +02:00
approve.php
deleteentry.php MDL-57456 mod_glossary: Implement tagging 2017-04-07 16:08:31 +08:00
edit.php MDL-57456 mod_glossary: Implement tagging 2017-04-07 16:08:31 +08:00
edit_form.php MDL-57456 mod_glossary: Implement tagging 2017-04-07 16:08:31 +08:00
editcategories.html
editcategories.php MDL-40759 icons: convert uses of pix_url to pix_icon 2017-03-17 15:52:17 +08:00
export.php MDL-56803 mod_glossary: Fix styles for boost theme 2016-11-14 15:43:58 +08:00
exportentry.php
formats.php
import.php MDL-61932 mod_glossary: Display site-level glossaries on section 1 2018-05-17 16:02:36 +08:00
import_form.php
index.php
lib.php MDL-63422 general: review core loop / switch / case / continue 2018-10-31 00:17:59 +01:00
locallib.php MDL-58784 mod_glossary: student can see his entries before approval 2017-05-08 11:35:29 +08:00
mod_form.php MDL-58138 completion: Fixes for a number of small issues. 2017-04-19 11:41:57 +08:00
print.php MDL-60174 core_dml: fix miscellaneous incorrect recordset usage 2017-11-27 11:10:33 +00:00
README.txt
rsslib.php
settings.php MDL-40759 icons: convert uses of pix_url to pix_icon 2017-03-17 15:52:17 +08:00
showentry.php
showentry_ajax.php MDL-57456 mod_glossary: Implement tagging 2017-04-07 16:08:31 +08:00
sql.php MDL-55575 mod_glossary: Allow viewing all entries on one page 2016-12-13 11:43:29 +01:00
styles.css MDL-60182 Glossary: Fix print icon label in RTL mode 2017-09-20 12:09:05 +03:00
tabs.php
TODO.txt
upgrade.txt MDL-57407 mod_glossary: Return ratings in external functions 2017-09-08 13:49:12 +02:00
version.php MDL-61932 mod_glossary: Display site-level glossaries on section 1 2018-05-17 16:02:36 +08:00
view.php MDL-61522 mod_glossary: use full url in links 2018-02-23 10:55:59 +08:00

Glossary version 0.5 dev
------------------------
By Williams Castillo (castillow@tutopia.com)

This is the Glossary module. Created and maintained by Williams Castillo. This are my first lines in PHP... It means that, although I've tried to do my best, it might (in fact, it does) shows my inexperience... in PHP... and moodle as well.

Basically, this module allows you to maintain a repository of data in the form of concepts, Entry->Definitions, etc. Thus:

- Entries could be automatically linked from within moodle resources, labels, forum posts, etc.
- Entries can have aliases which allows to automatically link the concept to other words than itself.
- Glossaries can be viewed in a printer-friendly version format
- The display format of the entries is modular so you can create your own formats (and share them with the Moodle community!)
- Entries are posted by teachers and can be posted by students as well
- Entries can be approved before make them public.
- Entries can have an optional attached file.
- Entries can be commented by any registered user.
- Entries can be categorized (one entry can belongs to zero or more categories)
- Entries can be browsed by letters (initials), categories or by date.
- Entries can be exported and imported

Quick install instructions

1) Be sure you have at least Moodle 1.2 dev installed
2) Be sure to have the latest version of the module
3) Be sure to have the latest language for english (en) and your own language.
3) Create a directory inside you /mod directory and name it: glossary
4) Copy all the files in this directory inside the one you've created in step 3.
5) Pay a visit to your admin area
6) Have fun.

Comments and suggestions are always welcome.

All the best,
Will