image_install()
Implements hook_install().
File
- core/modules/image/image.install, line 11
- Install, update and uninstall functions for the image module.
Code
function image_install() {
// Create the styles directory and ensure it's writable.
$directory = file_default_scheme() . '://styles';
file_prepare_directory($directory, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS);
}
Please login to continue.