Human-Logic-Software-LLC / moodle-local_levitate

The Levitate plugin for Moodle enables LMS users to explore a wide range of interactive, immersive, microlearning courses and programs in both English and Arabic.
https://www.levitate.coach/
GNU General Public License v3.0
1 stars 0 forks source link

Please don't call curl_init directly #12

Closed danmarsden closed 8 months ago

danmarsden commented 9 months ago

Please don't initate curl_init() directly but use Moodle's own "curl" class which is a wrapper on PHP's curl functions.

This isn't documented well, but if you search the moodle code base for "curl" you should see some good examples.

Moodle has a number of security and proxy settings that need to be respected which this core class takes care of for you.

sreenivasmalae commented 9 months ago

Instead of directly initiating curl_init(), we have incorporated Moodle's own 'curl' class.