function image_install in Drupal 7
Same name and namespace in other branches
- 8 core/modules/image/image.install \image_install()
- 9 core/modules/image/image.install \image_install()
- 10 core/modules/image/image.install \image_install()
Implements hook_install().
File
- 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);
}