Drupal:模板中的Imagecache预设
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal:模板中的Imagecache预设相关的知识,希望对你有一定的参考价值。
<pre> print theme('imagecache', 'profile_pic', $account->picture, $alt, $title, $attributes); } else { print theme('imagecache', 'profile_pic', default_profile_pic.png, $alt, $title, $attributes); } ?> </pre> //or this function theme_profile($image_path) { if (!$image_path) { $image_path = [path_to_default_image] } return theme('imagecache', $preset_name, $image_path); }
以上是关于Drupal:模板中的Imagecache预设的主要内容,如果未能解决你的问题,请参考以下文章