Can the module upload files?

I have a drupal module that requires other files from the internet. Is it possible for the module to load these files upon activation?

+3
source share
2 answers

Drupal Way is designed to use the File Interface and installation hooks:

, hook_install() hook_requirements(), , . , , hook_enable().

PHP-, . , include / require, API , .

, , File Interface. ( → ). , file_create_path(), file_save_data(). API , .

, , , file_check_location() file_get_contents() include/require.

+3
+2

Source: https://habr.com/ru/post/1761622/