diff options
author | Silvio <silvio@devlet.com.br> | 2011-04-20 11:30:55 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-04-20 11:30:55 -0300 |
commit | f853375cba68a214937b634e56affa067a5f0d62 (patch) | |
tree | c821742221550f0cf65020df11a19ac6e4725052 /imagecache_auto.install | |
parent | d79e3b775b544fe3656d566b4b3148a0b6a1d398 (diff) | |
download | imagecache_auto-f853375cba68a214937b634e56affa067a5f0d62.tar.gz imagecache_auto-f853375cba68a214937b634e56affa067a5f0d62.tar.bz2 |
Removing installation file
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 -} |