diff options
Diffstat (limited to 'imagecache_auto.install')
-rw-r--r-- | imagecache_auto.install | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/imagecache_auto.install b/imagecache_auto.install deleted file mode 100644 index 9c88466..0000000 --- a/imagecache_auto.install +++ /dev/null @@ -1,50 +0,0 @@ -<?php -// $Id$ - -/** - * @file - * Banco de Conteudos Culturais Website installation procedures. - */ - -/** - * Includes. - */ -include_once('load_imagecache_presets.module'); - -/** - * Implementation of hook_install(). - * Install default cck. - */ -function load_imagecache_presets_install() { - /** - * The following code was replaced by using Features module. - */ - /* - module_load_include('inc', 'install_profile_api', 'contrib/content_copy'); - $files = file_scan_directory(drupal_get_path('module', 'bcc') .'/cck', '.*cck'); - - foreach ($files as $file) { - install_content_copy_import_from_file($file->filename); - } - */ - - load_imagecache_presets_create(); -} - -/** - * Remove configuration data. - */ -function load_imagecache_presets_uninstall() { - /** - * Leave this commented out as it's better not to delete - * cached data until we find a reason for that. - */ - /* - $presets = imagecache_presets(); - foreach ($presets as $options) { - imagecache_preset_delete($options); - } - */ - - // Remove variables -} |