我尝试在表单内部渲染图像,但仍然无法渲染任何内容
这是自定义模块
$image_options = array(
'path' => 'http://novelplanet.com/Content/images/noImage.jpg',
'alt' => 'Test alt',
'title' => 'Test title',
'width' => '50%',
'height' => '50%',
'attributes' => array('class' => 'image', 'id' => 'my-img'),
);
$image = theme('image', $image_options);
$form['y']['image_div'] = array(
'#prefix' => '<div class="image">',
'#suffix' => '</div>',
'#markup' => $image,
);
在我的tpl中
<?php print drupal_render($form['y']['image_div']); ?>
如何在form.inc drupal 6
中渲染图像答案 0 :(得分:0)
使用主题方法如下:
theme('image', $path, $alt = '', $title = '', $attributes = NULL,
$getsize = TRUE);
您也可以使用
theme('imagecache', $presetname, $path, $alt = '', $title = '',
$attributes = NULL, $getsize = TRUE);
如果您使用ImageCache模块。