Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compliance with moodle.org site policy #1259

Merged
merged 1 commit into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions general/community/meetings/2019/07.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ Tuesday 2 July 2019, 11:00 UTC
1. Developing [plugin support for the Moodle mobile app](https://docs.moodle.org/dev/Mobile_support_for_plugins)
- Sam Marshall and Mark Johnson, The Open University (UK)
1. Google Summer of Code 2019 projects
- [Attendance password rotation/expiry](https://docs.moodle.org/dev/GSOC/2019#Attendance_password_rotation.2Fexpiry) - Mohammed Rahman and Dan Marsden
- [Adding multi-class classification to machine learning backend](https://docs.moodle.org/dev/GSOC/2019#Adding_multi-class_classification_to_machine_learning_backend) - Vlad Apetrei and David Monllaó
- Attendance password rotation/expiry - Mohammed Rahman and Dan Marsden
- Adding multi-class classification to machine learning backend - Vlad Apetrei and David Monllaó
3 changes: 2 additions & 1 deletion general/community/plugincontribution/checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ See [Coding style#Functions and Methods](../../development/policies/codingstyle/
### Strings

- Avoid hard-code texts in the code, always use `get_string()`.
- Just the English strings should ship with the plugin. All other translations are supposed to be submitted as contributions at [https://lang.moodle.org](https://lang.moodle.org) once your plugin is approved - see [Translating plugins](https://docs.moodle.org/dev/Translating_plugins).
- Just the English strings should ship with the plugin. All other translations are supposed to be submitted as contributions at [lang.moodle.org](https://lang.moodle.org) once your plugin is approved - see [Translating plugins](https://docs.moodle.org/en/Translating_plugins).
- Your code must not rely on trailing and leading whitespace in strings.
- The string file must be considered as pure data file with the syntax `$string[]('id') = 'value';`. No other PHP syntax such as [concatenation](http://php.net/manual/en/language.operators.string.php), [heredoc and nowdoc](http://php.net/manual/en/language.types.string.php) is supported by the tools that we use when processing your strings (even if it may work in Moodle itself).
- The English language pack (`lang/en/`) in Moodle does not use "Capitalised Titles".
Expand Down Expand Up @@ -207,6 +207,7 @@ Examples of issues that will prevent your plugin from being approved:
1. Compliance with [security guidelines](../../development/policies/security/index.md).
1. It integrates with an external system and does not have the privacy API correctly implemented.
1. It is an activity module and does not have the backup and restore API implemented.
1. You must be in compliance with the [Moodle.org Site policy](https://moodle.org/admin/tool/policy/view.php?policyid=4).

## See also

Expand Down
Loading