We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Moodle provides the ability to do an environment.xml where you describe which PHP version or PHP extensions your plugin needs.
Moodle core requires the GD extension, but doesn't check apart from "is this extension present".
You use freetype only functions, namely imagettfbbox():
imagettfbbox()
mod_learningmap/classes/mapworker.php
Line 261 in 5ada8bc
Could you add an environment.xml with a "required" for GD and an "optional check" with a custom function checking if freetype is enabled?
It would help others to determine the requirements to use this plugin better.
Or you could just replace the function with something else ;-)
The text was updated successfully, but these errors were encountered:
Relevant Moodle core issue: https://tracker.moodle.org/browse/MDL-58999
Issue in some other plugin we're using: jleyva/moodle-block_configurablereports#233
Sorry, something went wrong.
@danowar2k Would you mind testing the linked PR against the environment you experienced the issue?
Sorry had advisory absolutely no time to confirm this...
sh-csg
Successfully merging a pull request may close this issue.
Moodle provides the ability to do an environment.xml where you describe which PHP version or PHP extensions your plugin needs.
Moodle core requires the GD extension, but doesn't check apart from "is this extension present".
You use freetype only functions, namely
imagettfbbox()
:mod_learningmap/classes/mapworker.php
Line 261 in 5ada8bc
Could you add an environment.xml with a "required" for GD and an "optional check" with a custom function checking if freetype is enabled?
It would help others to determine the requirements to use this plugin better.
Or you could just replace the function with something else ;-)
The text was updated successfully, but these errors were encountered: