function image_install in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/image/image.install \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);
}