我正在使用组件创建器在joomla中创建一个组件。在这个组件中,我想一次上传多个图像,而不是只上传一个图像。为了做到这一点,我需要在以下代码中更改什么?
<?php if (!empty($item->images)):
$uploadPath = 'components' . '/'. 'com_gallery' . '/' . 'img' .'/' .$item->images;
echo '<a href="' . JRoute::_(JUri::base() . $uploadPath, false) . '" target="_blank" title="See the images">' . $item->images . '</a>';
else:
echo $item->images;
endif; ?> </td>