You are here

创建一个自定义ImageCache动作

g089h515r806 的头像
Submitted by g089h515r806 on 星期二, 2008-09-30 07:40

你需要参看imagecache.module的源代码,看里面是怎么定义的.

在你的模块中,你需要实现钩子hook_imagecache_actions.

由于动作(action)数据是存在drupal缓存中的,所以在你的模块安装文件中,应该包含以下代码:

<?php

function hook_enable() {
  cache_clear_all('imagecache_actions', 'cache');
}

function hook_disable() {
  cache_clear_all('imagecache_actions', 'cache');
}

?>

相关链接:http://drupal.org/node/290101 , http://zhupou.cn

Drupal版本: