我是drupal的初学者。我想从drupal中的特定文件夹中获取图像。有没有办法直接从自定义主题中的任何特定方式获取drupal图像。
答案 0 :(得分:0)
您应该只使用主题中的图片。你可以像这样找到你主题的路径:
$theme = drupal_get_path('theme',$GLOBALS['theme']);
将它放在使用主题图像的模板文件的顶部。然后在您的主题模板中,您可以使用以下内容:
<img src="/<?php echo $theme; ?>/images/my_image.png">
如果您将主题图片存储在images
目录...
答案 1 :(得分:0)
如果本地文件系统上的图像路径数组是您想要的 - 使用此代码,它应该满足您的需要。获取sites/default/files/vegas
目录中的所有png jpg gif路径。
//We will use the stream wrapper to access your files directory
if ($wrapper = file_stream_wrapper_get_instance_by_uri('public://')) {
//Now we can easily get an actual path to that folder
$directory = $wrapper->realpath();
//Don't forget to append your "vegas" subfolder here
$directory .= DIRECTORY_SEPARATOR . 'vegas' . DIRECTORY_SEPARATOR;
$images = glob($directory . "*.{jpg,png,gif}", GLOB_BRACE);
foreach($images as $imagePath)
{
//Do your thing!
echo $imagePath;
}
}