| 7 image.install | image_install() |
| 8 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);
}
Login or register to post comments