Drupal 7 theme_image 来自绝对 uri 的 src 绝对路径
Drupal 7 theme_image src absolute path from absolute uri
当前使用以下渲染图像:
$desktop_img = theme('image', array(
'path' => drupal_get_path('module', 'my_awesome_module') . '/images/desktop.png',
'width' => 20,
'height' => 20,
'alt' => t('View pc version'),
));
呈现为:
<img src="http://myawesome.site/sites/all/modules/custom/my_awesome_module/images/desktop.png" width="20" height="20" alt="View pc version" />
但我想要的是:
<img src="/sites/all/modules/custom/my_awesome_module/images/desktop.png" width="20" height="20" alt="View pc version" />
现在我们有一个解决方案可以使用:
function another_awesome_module_file_url_alter(&$uri) {
// Get outta here if there's an absolute link
if (strpos($uri, '://') !== FALSE) {
return;
}
// If the path includes references a gif/jpg/png images elsewhere
if (strpos($uri, conf_path()) !== FALSE ||
preg_match('/\.(jpg|gif|png)/i', $uri)) {
$uri = $GLOBALS['base_path'] . ltrim($uri, '/');
}
}
到 return 所有文件的绝对路径。所以我的问题是,在 theme_image 中是否有一种仅针对手头图像而不是更改所有文件路径的 drupally 方法?
您只需添加一个斜线即可开始 'path' 值:
$desktop_img = theme('image', array(
'path' => '/'.drupal_get_path('module', 'my_awesome_module') . '/images/desktop.png',
'width' => 20,
'height' => 20,
'alt' => t('View pc version'),
));
使用base_path()函数获取正确的路径,那么你就是在给主题函数一个绝对路径。
$desktop_img = theme('image', array(
'path' => base_path() . drupal_get_path('module', 'my_awesome_module') .
'/images/desktop.png',
'width' => 20,
'height' => 20,
'alt' => t('View pc version'),
));
问题不在于drupal_get_path
,它给出了一个相对路径,在图像主题中。
当前使用以下渲染图像:
$desktop_img = theme('image', array(
'path' => drupal_get_path('module', 'my_awesome_module') . '/images/desktop.png',
'width' => 20,
'height' => 20,
'alt' => t('View pc version'),
));
呈现为:
<img src="http://myawesome.site/sites/all/modules/custom/my_awesome_module/images/desktop.png" width="20" height="20" alt="View pc version" />
但我想要的是:
<img src="/sites/all/modules/custom/my_awesome_module/images/desktop.png" width="20" height="20" alt="View pc version" />
现在我们有一个解决方案可以使用:
function another_awesome_module_file_url_alter(&$uri) {
// Get outta here if there's an absolute link
if (strpos($uri, '://') !== FALSE) {
return;
}
// If the path includes references a gif/jpg/png images elsewhere
if (strpos($uri, conf_path()) !== FALSE ||
preg_match('/\.(jpg|gif|png)/i', $uri)) {
$uri = $GLOBALS['base_path'] . ltrim($uri, '/');
}
}
到 return 所有文件的绝对路径。所以我的问题是,在 theme_image 中是否有一种仅针对手头图像而不是更改所有文件路径的 drupally 方法?
您只需添加一个斜线即可开始 'path' 值:
$desktop_img = theme('image', array(
'path' => '/'.drupal_get_path('module', 'my_awesome_module') . '/images/desktop.png',
'width' => 20,
'height' => 20,
'alt' => t('View pc version'),
));
使用base_path()函数获取正确的路径,那么你就是在给主题函数一个绝对路径。
$desktop_img = theme('image', array(
'path' => base_path() . drupal_get_path('module', 'my_awesome_module') .
'/images/desktop.png',
'width' => 20,
'height' => 20,
'alt' => t('View pc version'),
));
问题不在于drupal_get_path
,它给出了一个相对路径,在图像主题中。