Drupal:模板中的Imagecache预设

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal:模板中的Imagecache预设相关的知识,希望对你有一定的参考价值。

  1. <pre>
  2. <?php if ($account->picture) {
  3. print theme('imagecache', 'profile_pic', $account->picture, $alt, $title, $attributes);
  4. }
  5. else {
  6. print theme('imagecache', 'profile_pic', default_profile_pic.png, $alt, $title, $attributes);
  7. }
  8. ?>
  9. </pre>
  10.  
  11. //or this
  12. function theme_profile($image_path) {
  13. if (!$image_path) {
  14. $image_path = [path_to_default_image]
  15. }
  16. return theme('imagecache', $preset_name, $image_path);
  17. }

以上是关于Drupal:模板中的Imagecache预设的主要内容,如果未能解决你的问题,请参考以下文章

imagecache默认预设

Drupal ImageCache主题IMG

Drupal-获取Imagecache照片

PHP Drupal-获取Imagecache照片

在Drupal7中手动构建imagecache(也称为图像样式)

Drupal 8 在 Twig 模板中渲染内容