我有多站点设置,其中 imagecache 模块位于站点/全部下。我的目标是让每个站点都有自己的 imagecache 文件夹,里面装满了属于该站点的请求;例如,通过 domain1/imagecache/files/thumb_image/photos/bigavatar.jpg 引用它们。
照片文件夹已通过 FTP 上传,因此 drupal 基本上不知道它(数据库方面),但如果文件夹位于 sites/default/files/photos 下并由 default/imagecache/files/thumb_image/photos/ 引用,则 imagecache 功能完美大化身.jpg。
寻找设置选项 - 并发现如果站点的上传路径发生更改,则 imagecache 可以使用它,但是;对于我的(JS)图像存储,发送到我的画廊,存储数据来自我自己的模块 ximagegallery。这是生成路径的方式:
<?php
/**
* @param title : visible gallery title
* @param basename filename base of image
* @param site current site (commonly guessed from REQUEST_URI but goal is to let this be configurable)
* @param location path of $basename imagefile underneath sites/$site/
*/
function ximagegallery_get_object($title, $basename, $site, $location) {
return array(
"title" => $title,
"link" => "{$site}{$location}/{$basename}",
"screenpath" => "{$site}/imagecache/screen{$location}{$basename}",
"thumbpath" => "{$site}/imagecache/small_thumb{$location}{$basename}"
);
}
?>
Imagecache 仅适用于文件系统配置的上传路径,我希望超越这一点并使 imagecache 响应任何位置,例如两个站点是否需要共享一个公共画廊/图像文件夹。
编辑; 我想一个解决方案是创建另一个 hook_menu,从我的派生模块调用 imagecache 函数 - 因为它已经是一个依赖项,这对于我猜的目的来说足够模块化
<?php
function ximagegallery_menu() {
// standard route hook
$items['ximagegallery/store/%'] = array(
'title' => 'ximagegallery_GENERATE',
'page callback' => 'ximagegallery_generate_store',
'page arguments' => array(1),
'access callback' => 'ximagegallery_access'
);
// one hook for each configured path
$hooks = get_variable('ximagegallery_folderhooks', array());
foreach($hooks as $folder) {
$items['$folder.'/imagecache'] = array(
'page callback' => 'imagecache_cache',
'access callback' => '_imagecache_menu_access_public_files',
'type' => MENU_CALLBACK
);
}
} ?>
如果我的文件夹挂钩包含“domain2/foo/bar”,那么这允许使用http://domain.tld/drupal/?q=domain2/foo/bar/imagecache/myimagefolder/galleryid/photo.jpg
精彩 =)