moodle/mod/glossary
Eloy Lafuente (stronk7) caf55abf17 MDL-74413 phpunit: Move more tests to use correct names and namespaces
Applied the following changes to various testcase classes:

- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.

Special mention to:

- Moved to the level2 "privacy" namespace:
  - \mod_assign\privacy\feedback_legacy_polyfill_test
  - \mod_assign\privacy\submission_legacy_polyfill_test

- Moved to the level2 "task" namespace:
  - \core_message\task\migrate_message_data_test
  - \ltiservice_gradebookservices\task\cleanup_test
  - \message_email\task\send_email_test
  - \mod_lti\task\clean_access_tokens_test
  - \mod_workshop\task\cron_task_test

- Moved to the level2 "event" namespace:
  - \core_h5p\event\deleted_test
  - \core_h5p\event\viewed_test

- Renamed to a better name:
  - backup_forum_activity_task_test.php (missing "task")
2022-05-07 20:32:30 +02:00
..
backup
classes MDL-74162 glossary: Fix the returned data type by create_add_button() 2022-03-11 00:03:52 +08:00
db MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
formats MDL-67735 theme_boost: remove bs2 and bs4alpha compatibility css 2020-08-17 08:16:42 +00:00
lang/en MDL-71914 mod_glossary: Add tertiary nav in glossary 2021-10-26 11:21:32 +08:00
pix Merge branch 'MDL-74235-master-2' of https://github.com/andrewnicols/moodle 2022-04-07 12:06:38 +06:00
templates MDL-73595 theme_boost: make tertiary nav more distinct 2022-02-28 13:07:52 +01:00
tests MDL-74413 phpunit: Move more tests to use correct names and namespaces 2022-05-07 20:32:30 +02:00
approve.php
deleteentry.php MDL-72413 glossary: Use the common module for setting the header 2021-12-13 09:49:34 +08:00
deprecatedlib.php MDL-71144 mod_glossary: Deprecate glossary_get_completion_state() 2021-04-22 10:08:10 +10:00
edit.php MDL-73360 glossary: Add heading when creating entries 2022-01-13 09:32:38 +08:00
edit_form.php MDL-64906 mod: add support for hideif to activity modules 2019-04-02 09:13:09 +01:00
editcategories.html MDL-66436 glossary: Edit and delete categories form styles. 2019-09-05 18:03:52 +02:00
editcategories.php MDL-66436 glossary: Edit and delete categories form styles. 2019-09-05 18:03:52 +02:00
export.php MDL-73595 theme_boost: make tertiary nav more distinct 2022-02-28 13:07:52 +01:00
exportentry.php
formats.php MDL-27193 mod_glossary: reducing system setting db queries 2021-05-05 23:13:53 +08:00
import.php MDL-73360 glossary: Add heading when creating entries 2022-01-13 09:32:38 +08:00
import_form.php MDL-73360 glossary: Add heading when creating entries 2022-01-13 09:32:38 +08:00
index.php
lib.php MDL-73532 navigation: Modify methods that extend the setting nav 2022-02-14 09:40:27 +08:00
locallib.php
mod_form.php MDL-70621 mod_glossary: use glossary rsstype string. 2021-02-03 08:33:54 +01:00
print.php
README.txt
rsslib.php MDL-71099 Lib: Move new user_fields class from core to core_user 2021-03-25 13:47:23 +00:00
settings.php MDL-27193 mod_glossary: reducing system setting db queries 2021-05-05 23:13:53 +08:00
showentry.php MDL-73595 theme_boost: make tertiary nav more distinct 2022-02-28 13:07:52 +01:00
showentry_ajax.php
sql.php
styles.css
tabs.php MDL-71914 mod_glossary: Add tertiary nav in glossary 2021-10-26 11:21:32 +08:00
TODO.txt
upgrade.txt MDL-63806 glossary: Return user permissions for entries in WS 2020-10-09 09:42:56 +02:00
version.php MDL-74471 versions: bump all versions and requires near release 2022-04-13 10:37:36 +08:00
view.php MDL-72413 glossary: Use the common module for setting the header 2021-12-13 09:49:34 +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